博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache common configuration
阅读量:5260 次
发布时间:2019-06-14

本文共 777 字,大约阅读时间需要 2 分钟。

apache configuration可以读取properties文件,方便用户为程序配置一些属性。

configuration读取文件的默认编码是ISO-8859-1,对于有中文数据变量,需要将properties文件编码格式改成UTF-8或者是GBK,在configuration读取文件前需要先设定编码格式,否则读出来的数据会是乱码。

try {            PropertiesConfiguration config = new PropertiesConfiguration();            //设置编码格式            config.setEncoding("UTF-8");            //读取文件            config.load("./conf/test.properties");            Iterator it = config.getKeys();            while(it.hasNext()) {                System.out.println(config.getString((String) it.next()));            }        } catch (ConfigurationException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }

测试项目路径存放:

http://pan.baidu.com/s/1jGsk50q 密码:xrpr

转载于:https://www.cnblogs.com/visoncheng/p/3537471.html

你可能感兴趣的文章
Redmine
查看>>
帧的最小长度 CSMA/CD
查看>>
树状数组及其他特别简单的扩展
查看>>
普通求素数和线性筛素数
查看>>
PHP截取中英文混合字符
查看>>
【洛谷P1816 忠诚】线段树
查看>>
电子眼抓拍大解密
查看>>
poj 1331 Multiply
查看>>
tomcat7的数据库连接池tomcatjdbc的25个优势
查看>>
Html 小插件5 百度搜索代码2
查看>>
Ubuntu(虚拟机)下安装Qt5.5.1
查看>>
java.io.IOException: read failed, socket might closed or timeout, read ret: -1
查看>>
java 常用命令
查看>>
卷积中的参数
查看>>
51nod1076 (边双连通)
查看>>
Item 9: Avoid Conversion Operators in Your APIs(Effective C#)
查看>>
深入浅出JavaScript(2)—ECMAScript
查看>>
ViewPager的onPageChangeListener里面的一些方法参数:
查看>>
Jenkins关闭、重启,Jenkins服务的启动、停止方法。
查看>>
CF E2 - Array and Segments (Hard version) (线段树)
查看>>