python读取properties文件_120prop-python3.7 读写.properties文件

#!/usr/bin/python

# -*- coding: UTF-8 -*-

import re

import os

import tempfile

class Properties:

def __init__(self, file_name):

self.file_name = file_name

self.properties = {}

try:

fopen = open(self.file_name, ‘r‘)

for line in fopen:

line = line.strip()

if line.find(‘=‘) > 0 and not line.startswith(‘#‘):

strs = line.split(‘=‘)

self.properties[strs[0].strip()] = strs[1].strip()

except Exception :

raise e

else:

fopen.close()

def has_key(self, key):

return key in self.properties

def get(self, key, default_value=‘‘):

if key in self.properties:

return self.properties[key]

return default_value

def put(self, key, value):

self.properties[key] = value

replace_property(self.file_name, key + ‘=.*‘, key + ‘=‘ + value, True)

def replace_property(file_name, from_regex, to_str, append_on_not_exists=True):

tmpfile = tempfile.TemporaryFile()

if os.path.exists(file_name):

r_open = open(file_name, ‘r‘)

pattern = re.compile(r‘‘ + from_regex)

found = None

for line in r_open:

if pattern.search(line) and not line.strip().startswith(‘#‘):

found = True

line = re.sub(from_regex, to_str, line)

tmpfile.write(line.encode())

if not found and append_on_not_exists:

tmpfile.write((‘\n‘ + to_str).encode())

r_open.close()

tmpfile.seek(0)

content = tmpfile.read()

if os.path.exists(file_name):

os.remove(file_name)

w_open = open(file_name, ‘wb‘)

w_open.write(content)

w_open.close()

tmpfile.close()

else:

print ("file %s not found" % file_name)

if __name__ == "__main__":

file_path = ‘jdbc.properties‘

props = Properties(file_path) # 读取文件

props.put(‘jdbc.url‘, ‘value_a‘) # 修改/添加key=value

print (props.get(‘key_a‘)) # 根据key读取value

print ("props.has_key(‘key_a‘)=" + str(props.has_key(‘key_a‘))) # 判断是否包含该key

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值