`
topsale
  • 浏览: 22029 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Java - 读取Properties文件信息

阅读更多
读取Properties文件有6种方法,我就写一种我常用的,写多了没意思,能用就行呗。

Properties文件代码如下:
hello_world = HelloWorld


Java文件代码如下:
	public static void main(String[] args) {
		JSTLServlet test = new JSTLServlet();
		test.showProperties();
	}
	
	private void showProperties() {
		//获取根目录
		String filePath = this.getClass().getResource("/").getPath();
		try {
			//将Properties文件放入流中
			InputStream stream = new BufferedInputStream(new FileInputStream(new File(filePath + "test.properties")));
			Properties pro = new Properties();
			//加载
			pro.load(stream);
			//获取hello_world的值
			String str = pro.getProperty("hello_world");
			//输出
			System.out.println(str);
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}


输出结果:
HelloWorld
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics