ConfigParser读取properties
ConfigParser读取properties文件时,properties文件必须有默认的头,例如[default]
,如果没有会报错。
因为ConfigParser默认是读取ini格式文件,ini文件必须有section header。properties虽然也是key=value格式,但是不强制section header。
解决方式是读取内容后手动加上header,然后交给ConfigParser解析。
1 | content = "[default]\n" + open(bathPath + "\\" + file).read() |
ConfigParser读取properties
https://wyue1227.github.io/2023/04/12/爬坑记录/ConfigParser读取properties/