rootDir = os.path.join(CASE_PATH, "系统", "基础", "管理")print rootDirprint(chardet.detect(rootDir))print os.path.exists(rootDir)unicode(rootDir, "utf-8")print rootDirprint(chardet.detect(rootDir))print os.path.exists(unicode(rootDir, "utf-8"))E:\ABS\TestCase\系统\基础\管理 {‘confidence‘: 0.99, ‘language‘: ‘‘, ‘encoding‘: ‘utf-8‘} False E:\ABS\TestCase\系统\基础\管理 {‘confidence‘: 0.99, ‘language‘: ‘‘, ‘encoding‘: ‘utf-8‘} True 网上各种回答乱入: 1.python默认安装的时候编码是ASCII 2.python内部执行程序时传递时是UNICODE 3.python内存中中文变现为UNNICODE 解决方法如上,暂时还在凌乱,后续再看吧 又报错打印出来路径变成16进制了 解决:rootDir.decode(‘utf-8‘).encode(‘utf-8‘)
原文地址:https://www.cnblogs.com/mariahcat/p/9304098.html
时间: 2024-10-29 19:08:45