符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
Jython中怎么访问Java属性文件,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
创新互联主营叙永网站建设的网络公司,主营网站建设方案,成都app软件开发,叙永h5微信小程序定制开发搭建,叙永网站营销推广欢迎叙永等地区企业咨询
为何需要Jython访问Java属性文件
使用Jython的过程中经常需要访问Java属性文件以得到配置信息。Jython 可以用loadProperties 和getProperty 函数做到这一点,如下所示:
def loadProperties (source): """ 将Java属性文件加载入词典 """ result = {} if type(source) == type(''): # name provided, use file source = io.FileInputStream(source) bis = io.BufferedInputStream(source) props = util.Properties() props.load(bis) bis.close() for key in props.keySet().iterator(): result[key] = props.get(key) return result def getProperty (properties, name, default=None): """ 取得一个属性 """ return properties.get(name, default)
Jython访问Java属性文件示例
所以,假如使用的是访问Java属性文件 中的函数,如下所示:
import sys file = sys.argv[1] props = loadProperties(file) print "Properties file: %s, contents:" % file print props print "Property %s = %i" % ('debug', int(getProperty(props, 'debug', '0'))) import sys file = sys.argv[1] props = loadProperties(file) print "Properties file: %s, contents:" % file print props print "Property %s = %i" % ('debug', int(getProperty(props, 'debug', '0')))
并且这些函数具有如下属性文件内容:
# 一个示例用属性文件 debug = 1 error.level = ERROR now.is.the.time = false # 一个示例用属性文件 debug = 1 error.level = ERROR now.is.the.time = false
那么,得到的输出就会是:
Properties file: test.properties, contents: {'error.level': 'ERROR', 'debug': '1', 'now.is.the.time': 'false'} Property debug = 1
看完上述内容,你们掌握Jython中怎么访问Java属性文件的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!