前言:
现时你们对“java读写文本文件的基本步骤有哪些方法”都比较珍视,咱们都需要分析一些“java读写文本文件的基本步骤有哪些方法”的相关内容。那么小编同时在网络上搜集了一些对于“java读写文本文件的基本步骤有哪些方法””的相关内容,希望同学们能喜欢,看官们一起来了解一下吧!import time
file_log = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))
或
import datetime
file_log = datetime.datetime.now().strftime('%Y-%m-%d_%H_%M_%S')
save_path ='E:/output/'
fh = open(save_path+file_log+'.txt', 'w', encoding='utf-8')
fh.write(str(ad_json))
fh.close()
标签: #java读写文本文件的基本步骤有哪些方法 #python往txt写入数据 #python往txt写入字符串 #python读取文件名写入txt