commons-configuration自定义配置文件
我会将配置保存为列表,例如: 152.158.1545.415:80 好的 152.108.145.415:80 152.158.115.415:80 500
代替:
proxy= 152.108.145.415:80 代理= 152.108.145.415:80 ... 并阅读它。 ( 152.108.145.415 作为字符串 80 作为数字)。 我可以在这个库(commons-configuration)中进行这样的定制吗?
I'd to save configuration as a list of sth like:
152.158.1545.415:80 Ok
152.108.145.415:80
152.158.115.415:80 500
instead of:
proxy= 152.108.145.415:80
proxy= 152.108.145.415:80
...
and read it. ( 152.108.145.415 as a string 80 as a number ).
Can I do such a customisation in this library (commons-configuration)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
PropertiesConfiguration
,您可以自定义“proxy”属性的布局,并将值放在一行中,如下所示:您可以通过调用以下命令来执行此操作:
If you are using a
PropertiesConfiguration
you can customize the layout for the "proxy" property and have the values on a single line like this:You do this by calling: