"""处理Excel"""import xlrdfrom conf import settingsfrom utils.LogHandler import loggerclass ExcelOperate(object): def __init__(self, file_path, sheet_by ...
分类:
其他好文 时间:
2020-05-14 15:21:46
阅读次数:
77
文件操作,open() 1 # open(file_path, mode='r', encoding='utf-8') 2 # file_path 目标文件路径 3 # mode 文件模式,参数r-读取(默认参数),w-写入并创建(会覆盖之前的内容),a-追加文本(若文件不存在,会先创建文档,再写入 ...
分类:
编程语言 时间:
2020-05-13 00:32:00
阅读次数:
83
一:将网络文件转为Base64 将文件转为base64 public static String fileToBase64(String url){ int byteread = 0; String total = null; byte[] totalbyte = new byte[0]; try ...
分类:
编程语言 时间:
2020-05-09 16:58:13
阅读次数:
58
//代码 public static void main(String[] args) throws Exception { String path = "f:/svn/t_dictionary.txt"; File file = new File(path);//源文件 Long fsize = ...
分类:
编程语言 时间:
2020-05-07 15:49:54
阅读次数:
185
f3 = open(file=path,mode='rb') data = f3.read() # print(data) f3.close() result = chardet.detect(data) print(result) 结果: {'encoding': 'Big5', 'confide ...
分类:
其他好文 时间:
2020-05-07 10:51:49
阅读次数:
74
在spring中有时候需要解决硬编码问题,这是可以使用配置文件来解决问题 在配置文件中配置 file.path=/aa/bb/ 此时可以在spring中使用@Value注解将配置文件中的文件路径取出 @Value("${file.path}“) private String path; 那么在程序运 ...
分类:
其他好文 时间:
2020-04-30 11:31:06
阅读次数:
230
:PHP在判断文件是否存在,不存在就创建的时候,使用mkdir创建时候报错“No such file or directory”,出错代码如下: $path = 'upload/common/';//文件路径 $new_file = $path.date('Ymd',time()).'/'; if( ...
分类:
Web程序 时间:
2020-04-27 19:06:32
阅读次数:
79
2019政府工作报告.txt https://www.lanzous.com/iby44eh 栗子1: import wordcloud import jieba f=open("2019政府工作报告.txt","r",encoding="utf-8") t=f.read() f.close() l ...
分类:
编程语言 时间:
2020-04-26 13:52:07
阅读次数:
478
1.MinGW下载 2.设置MinGW环境变量 - Path C:\MinGW\bin 3.在sublime工具栏中,选择“工具“->“编译系统“->“新建编译系统“,会打开文件名称为“Untitled.sublime-build“文件。 { "shell_cmd": "g++ -Wall \"$f ...
分类:
编程语言 时间:
2020-04-26 10:43:34
阅读次数:
110
一、Source 代码地址:https://gitee.com/nltxwz_xxd/abc_bigdata 1.1、flink内置数据源 1、基于文件 env.readTextFile("file://path") env.readFile(inputFormat, "file://path"); ...
分类:
其他好文 时间:
2020-04-24 21:42:02
阅读次数:
85