最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - How to read indexed properties with Apache Commons Configuration - Stack Overflow

programmeradmin2浏览0评论

The Apache Commons Configuration Java library can easily read repeated properties as lists and/or arrays.

How can I read indexed properties?

Repeated properties

Sample code from the Commons Configuration user guide.

usergui.properties file:

colors.pie = #FF0000
colors.pie = #00FF00
colors.pie = #0000FF

Java code:

Configurations configs = new Configurations();
PropertiesConfiguration config = configs.properties("usergui.properties");

List<String> list = config.getList(String.class, "colors.pie"));
String[] array = config.getStringArray("colors.pie")));

The list and array variables will both contain [#FF0000, #00FF00, #0000FF].

Indexed properties

usergui.properties file:

colors.pie.0 = #FF0000
colors.pie.1 = #00FF00
colors.pie.2 = #0000FF

Is there a way I can use Commons Configuration to read these properties as a list and/or an array?

发布评论

评论列表(0)

  1. 暂无评论