读取属性文件内容
Posted 橘子和西红柿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取属性文件内容相关的知识,希望对你有一定的参考价值。
public class Client {
/**
* socket的连接参数属性文件
*/
private final String propFile = "/com/coruninfo/zs/tax/banksocket/handler/client.properties";//属性文件地址
Properties prop = new Properties();
InputStream input = Client.class.getResourceAsStream(propFile);//Client.class是当前类名
prop.load(input);
String IP = prop.getProperty("ip");
int PORT = Integer.parseInt(prop.getProperty("port"));
int TIMEOUT = Integer.parseInt(prop.getProperty("timeOut"));
System.out.println(IP + " , " + PORT + " , " + TIMEOUT);
}
以上是关于读取属性文件内容的主要内容,如果未能解决你的问题,请参考以下文章
spring配置中无法读取$driverClassName,properties文件能加装,但是不能读取driverClassName内容?