前言
本文主要介绍了关于java读取web项目中json文件为map集合的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
实例介绍
假设当前项目web目录(/resource/test.json)下有一json文件如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
[ { "path" : "content_111" , "title" : "文章1" , "imgUrl" : "../../../libs/img/pptau/pf.jpg" }, { "path" : "content_222" , "title" : "文章2" , "imgUrl" : "../../../libs/img/pptau/pf.jpg" } ] |
其在Java中读取为List<Map> 的方法为:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
String dir = request.getSession().getServletContext() .getRealPath( "/resource/test.json" ); try { File file = new File(dir); if (!file.exists()) { file.createNewFile(); } String str= FileUtils.readFileToString(file, "UTF-8" ); List<Map> maps= (List)JSONArray.fromObject(str); } catch (IOException e) { e.printStackTrace(); } |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://blog.csdn.net/qq12547345/article/details/72898135