码迷,mamicode.com
首页 > 编程语言 > 详细

java读取资源文件的方法

时间:2015-11-04 11:40:27      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

package com.xy;


import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.InputStreamReader;

import java.io.UnsupportedEncodingException;

import java.util.Properties;


public class Test {


/**

* @param args

* @throws FileNotFoundException 

* @throws UnsupportedEncodingException 

*/

public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException {

FileInputStream in =null;

InputStreamReader ir =null;

File file = new File(Thread.currentThread().getContextClassLoader().getResource("fileupload.properties").getPath());//获取路径

Properties p = new Properties();

in = new FileInputStream(file);

ir = new InputStreamReader(in, "utf-8");

try {

p.load(ir);

String s = p.getProperty("file.projectLogo");

System.out.println("file.projectLogo得路径读取为"+s);

} catch (IOException e) {

e.printStackTrace();

}


}


}



最后打印的结果为:file.projectLogo得路径读取为D:/upload


其中fileupload.properties文件中配置的file.projectLogo=D\:/upload





java读取资源文件的方法

标签:

原文地址:http://my.oschina.net/kevin007F/blog/525601

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!