添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

JAVA本身提供了对于Properties文件操作的类,项目中的很多配置信息都是放在了 Properties文件。但是 Python并没有提供操作 Properties文件的库,所以,自己动手写个一个可以加载 Properties文件的脚本。

class Properties:

fileName = ''

def __init__(self, fileName):

self.fileName = fileName

def getProperties(self):

pro_file = open(self.fileName, 'r')

properties = {}

for line in pro_file:

if line.find('=') > 0:

strs = line.replace('\n', '').split('=')

properties[strs[0]] = strs[1]

except Exception, e:

raise e

else:

pro_file.close()

return properties

实际调用:

fileName = sys.path[0] + '\\'+ 'system.properties'

p = Properties(fileName)

properties = p.getProperties()

print properties[Key]

10.从入门到精通:Python 列表(List),列表脚本操作符,列表截取,列表函数&方法
10.从入门到精通:Python 列表(List),列表脚本操作符,列表截取,列表函数&方法