RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
python文件读取编码笔记
import os
    pathloc = 'C:\\Users\\lw\\Desktop\\课件'
    try:
        with open("log_logo", "w+", encoding="utf-8") as f:
            for root, dirs, files in os.walk(pathloc, topdown=False):
                # print('root:',root)
                # print('dirs:',dirs)
                # print('files:',files)
                tmpdir = root
                for filename in files:
                    if filename.endswith("java"):
                        filepath = os.path.join(tmpdir, filename)  #需要拼接路径
                        try:
                            with open(filepath, 'r', encoding="gbk")as f1:
                            # with open(filepath, 'r', encoding="utf-8")as f1:
                                s = f1.read()
                                # print(s)
                                f.write(s)
                        except:
                            with open(filepath, 'r', encoding="UTF-8")as f1:
                            # with open(filepath, 'r', encoding="utf-8")as f1:
                                s = f1.read()
                                # print(s)
                                f.write(s)
    except:
        pass

分享名称:python文件读取编码笔记
链接URL:http://cqwzjz.cn/article/ihhosh.html