上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 80 下一页
摘要: package LearnJava15; import java.io.*; public class CopyFoldersDemo { public static void main(String[] args) throws IOException { // 数据源 File srcFile= 阅读全文
posted @ 2022-04-26 19:12 木子欢儿 阅读(30) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFolderDemo { public static void main(String[] args) throws IOException { // 创建数据源目录对象 File src 阅读全文
posted @ 2022-04-26 19:11 木子欢儿 阅读(27) 评论(0) 推荐(0) 编辑
摘要: # FilesBatchRename.py # 导入os库 import os # 图片存放的路径 path = r"D:/temp" # 遍历更改文件名 num = 1 for file in os.listdir(path): os.rename(os.path.join(path,file), 阅读全文
posted @ 2022-04-26 16:05 木子欢儿 阅读(45) 评论(0) 推荐(0) 编辑
摘要: python版本: 3.8 问题:在python运行代码: import time print(time.clock()) 出现错误 : AttributeError module 'time' has no attribute 'clock' 原因 : Python time.clock在Pyth 阅读全文
posted @ 2022-04-25 09:55 木子欢儿 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 以下是小黑宇宙收集的一些采集接口,我自己也在用,用来搭建一个影视站是绰绰有余了,现在分享出来做个记录 。因为影视资源站的不稳定,经常会换域名换接口之类的,如果下面接口失效了,可以在评论区留言,我会去验证看看。 采集接口 # 百度云资源 https://api.apibdzy.com/api.php/ 阅读全文
posted @ 2022-04-24 13:05 木子欢儿 阅读(2163) 评论(0) 推荐(0) 编辑
摘要: 在运行命令:python wsgi.py报错: Traceback (most recent call last): File "wsgi.py", line 5, in <module> app = create_app() File "C:\Users\kegek\Desktop\flask_t 阅读全文
posted @ 2022-04-23 21:53 木子欢儿 阅读(425) 评论(0) 推荐(0) 编辑
摘要: names.txt 小A同学 小B同学 小C同学 小D同学 小E同学 小F同学 小G同学 小H同学 小I同学 CallNameDemo.java package LearnJava12; import java.io.BufferedReader; import java.io.FileNotFou 阅读全文
posted @ 2022-04-22 11:15 木子欢儿 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 集合到文件 package LearnJava12; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; public cl 阅读全文
posted @ 2022-04-22 11:04 木子欢儿 阅读(56) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-04-20 21:18 木子欢儿 阅读(103) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-04-20 20:48 木子欢儿 阅读(81) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 80 下一页