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

Java 读取文件的内容

时间:2017-03-06 11:39:07      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:base   load   common   system   getpath   span   read   new   inf   

Java 读取文件的内容

1) CLASS_NAME: 换成自己真实的类名

2) /page/test.json: 换成自己真实的page

3) FileUtils: 来自于org.apache.commons.io.FileUtils(org.apache.commons)

File f = new File(Thread.currentThread().getContextClassLoader().getResource("").getPath());
String basePath = f.getPath().replace(File.separator + "WEB-INF" + File.separator + "classes" + "", "");
File file = new File(basePath + "/page/test.json");
String fileStr= FileUtils.readFileToString(file);
System.out.println("fileStr: " + fileStr);

 

Java 读取文件的内容

标签:base   load   common   system   getpath   span   read   new   inf   

原文地址:http://www.cnblogs.com/cobble19/p/6508743.html

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