java读取xml文件并放入集合,然后返回集合数组。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取xml文件并放入集合,然后返回集合数组。相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?><ShowList> <Movie> <Name>非常完美</Name> <Poster>perfect</Poster> <Director>阴萌</Director> <Actor>范冰冰</Actor> <Type>Romance</Type> <Price>60</Price> <Schedule> <Item>09:00</Item> <Item>13:00</Item> </Schedule> </Movie> <Movie> <Name>星球大战</Name> <Poster>perfect</Poster> <Director>阴萌</Director> <Actor>范冰冰</Actor> <Type>Romance</Type> <Price>60</Price> <Schedule> <Item>11:00</Item> <Item>16:00</Item> </Schedule> </Movie></ShowList>
输出结果为:
非常完美 perfect 阴萌 范冰冰 Romance 60 Romance 09:00
非常完美 perfect 阴萌 范冰冰 Romance 60 Romance 13:00
星球大战 perfect 阴萌 范冰冰 Romance 60 Romance 11:00
星球大战 perfect 阴萌 范冰冰 Romance 60 Romance 16:00
public class t public static void main(String[] args) throws DocumentException, UnsupportedEncodingException String xmlString = ""; ByteArrayInputStream in = new ByteArrayInputStream(xmlString.getBytes("utf-8")); SAXReader xmlReader = new SAXReader(); Document document = xmlReader.read(in);
Element root = document.getRootElement();
XPath x = document.createXPath("ShowList/Movie"); List<Element> elements = (List<Element>)x.selectNodes(document);

参考技术A 亲,用dom4j解析吧,dom4j相比较其他的xml解析工具无论从使用方面还是性能方面都略胜一筹! 参考技术B 你写了一半,是写不下去了吗,需要给你一个完整的答案?追问

总报错,大哥你能给我一个比较好的代码吗

追答

代码已经写好,你看下附件。

追问

太感谢了,大哥能留个QQ以后有啥不懂的向你请教

本回答被提问者采纳

文件缓存(配合JSON数组)

1.   写入缓存:建立文件夹,把list集合里面的数组转换为JSON数组,存入文件夹
2.  读取缓存:把JSON数组从文件夹里面读取出来,然后放入list集合,返回list集合

private final static File filefolder=new File("/sdcard/myData");
private final static File filename=new File("/sdcard/myData/tem.txt"); public static boolean writeCache(List<Data> list) { if(!filefolder.exists()) filefolder.mkdirs(); try { JSONArray array=new JSONArray(); for(int i=0;i<list.size();i++) { Data data=list.get(i); JSONObject ob=new JSONObject(); ob.put("name", data.getName()); ob.put("reason", data.getReason()); array.put(ob); } FileWriter fw=new FileWriter(filename); fw.write(array.toString()); fw.close(); } catch(Exception e) { e.printStackTrace(); return false; } return true; } public static List<Data> readCache() throws JSONException,IOException { if(!filefolder.exists()) filefolder.mkdir(); List<Data> list=new ArrayList<Data>(); if(filename.exists()) { FileInputStream in=new FileInputStream(filename); String line=null; StringBuffer sb=new StringBuffer(""); BufferedReader br=new BufferedReader(new InputStreamReader(in)); while((line=br.readLine())!=null) sb.append(line); br.close(); in.close(); JSONArray array=new JSONArray(sb.toString()); for(int i=0;i<array.length();i++) { JSONObject ob=new JSONObject(); ob=array.getJSONObject(i); Data data=new Data(); data.setName(ob.getString("name")); data.setReason(ob.getString("reason")); list.add(data); } } return list; }

 





以上是关于java读取xml文件并放入集合,然后返回集合数组。的主要内容,如果未能解决你的问题,请参考以下文章

java将list集合中的for数据循环添加到String数组中

201621123030《Java程序设计》第9周学习总结

一个Java基础练习

java的socke client端接收xml报文的问题

POI读取excel工具类 返回实体bean集合

用java创建一个包含5个元素的List集合,然后将该List集合转换为数组,并输出转 换后的数组。