Java读取配置文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Java读取配置文件

Java读取配置文件

 2015/4/25 1:06:49  fengshulin  程序员俱乐部  我要评论(0)
  • 摘要:1.新建application.propertiesname=solin2.使用以下程序获取配置信息InputStreaminputStream=this.getClass().getClassLoader().getResourceAsStream("application.properties");Propertiesp=newProperties();try{p.load(inputStream);}catch(IOExceptione1){e1.printStackTrace();
  • 标签:配置文件 文件 配置 Java

1.新建application.properties

class="java" name="code">name=solin

?2.使用以下程序获取配置信息

InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("application.properties");   
  Properties p = new Properties();   
  try {   
   p.load(inputStream);   
  } catch (IOException e1) {   
   e1.printStackTrace();   
  }   
System.out.println("name:"+p.getProperty("name"));  

?

上一篇: 工作中常用工具类总结 下一篇: 没有下一篇了!
发表评论
用户名: 匿名