java中怎么把list的信息写入到xml
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么把list的信息写入到xml相关的知识,希望对你有一定的参考价值。
package com.imct.util;import java.beans.XMLDecoder;
import java.beans.XMLEncoder;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* <title>使用XML文件存取可序列化的对象的类</title>
* <description>提供保存和读取的方法</description>
* @author 殷晋
* <copyright>清华大学汽车工程开发研究院@2005</copyright>
* @version 1.0
* 2005-8-5 16:44:49
*/
public class ObjectToXMLUtil
/**
* 把java的可序列化的对象(实现Serializable接口)序列化保存到XML文件里面,如果想一次保存多个可序列化对象请用集合进行封装
* 保存时将会用现在的对象原来的XML文件内容
* @param obj 要序列化的可序列化的对象
* @param fileName 带完全的保存路径的文件名
* @throws FileNotFoundException 指定位置的文件不存在
* @throws IOException 输出时发生异常
* @throws Exception 其他运行时异常
*/
public static void objectXmlEncoder(Object obj,String fileName)
throws FileNotFoundException,IOException,Exception
//创建输出文件
File fo = new File(fileName);
//文件不存在,就创建该文件
if(!fo.exists())
//先创建文件的目录
String path = fileName.substring(0,fileName.lastIndexOf('.'));
File pFile = new File(path);
pFile.mkdirs();
//创建文件输出流
FileOutputStream fos = new FileOutputStream(fo);
//创建XML文件对象输出类实例
XMLEncoder encoder = new XMLEncoder(fos);
//对象序列化输出到XML文件
encoder.writeObject(obj);
encoder.flush();
//关闭序列化工具
encoder.close();
//关闭输出流
fos.close();
/**
* 读取由objSource指定的XML文件中的序列化保存的对象,返回的结果经过了List封装
* @param objSource 带全部文件路径的文件全名
* @return 由XML文件里面保存的对象构成的List列表(可能是一个或者多个的序列化保存的对象)
* @throws FileNotFoundException 指定的对象读取资源不存在
* @throws IOException 读取发生错误
* @throws Exception 其他运行时异常发生
*/
public static List objectXmlDecoder(String objSource)
throws FileNotFoundException,IOException,Exception
List objList = new ArrayList();
File fin = new File(objSource);
FileInputStream fis = new FileInputStream(fin);
XMLDecoder decoder = new XMLDecoder(fis);
Object obj = null;
try
while( (obj = decoder.readObject()) != null)
objList.add(obj);
catch (Exception e)
// TODO Auto-generated catch block
fis.close();
decoder.close();
return objList;
参考技术A 解决方案
解决方案二:
PrintWriterout=response.getWriter();StringBufferstrBuffer=newStringBuffer();strBuffer.append("<?xmlversion="1.0"encoding="UTF-8"?>")strBuffer.append("<root>");strBuffer.append("<child>");strBuffer.append("<child>");strBuffer.append("<root>");out.print(strBuffer.toString());out.flush();out.close();
解决方案三:
用dom4j写呗
解决方案四:
可以具体点吗?我的数据是这样的List<bean>list=返回List的方法();谢谢!!!!!!!!!!!
解决方案五:
用dom4j写
解决方案六:
期待高手的更好的解决方案!
解决方案七:
publicvoidcreateXMLFile(StringfilePath,List<String>list)Documentdocument=DocumentHelper.createDocument();Elementelement=document.addElement("content");if(list!=null&&!list.isEmpty())ElementbaseElement=element.addElement("base64Content");for(inti=0;i<list.size();i++)ElementdecoderElement=baseElement.addElement("decoder");decoderElement.addAttribute("show",String.valueOf(i));decoderElement.setText(list.get(i));tryOutputFormatoutFmt=newOutputFormat("t",true);outFmt.setEncoding("UTF-8");XMLWriterwriter=newXMLWriter(newFileOutputStream(filePath),outFmt);writer.write(document);writer.close();catch(Exceptionex)ex.printStackTrace();用dom4j写的,jar包你自己找吧,这里不能发
解决方案八:
这东西还要自己写啊,Java最大的好处就是库多,只要找找什么样的都有。自己写拼接麻烦容易错误而且还要对特殊字符&<之类的转译。推荐使用框架:用Jaxb或者XStream,Simple。http://www.blogjava.net/xmatthew/archive/2008/12/10/245558.html推荐使用XSTream小巧好用,一句就可以了。http://xstream.codehaus.org/
解决方案九:
Listlist=newArrayList();Documentdoc=DocumentHelper.createDocument();Elementroot=doc.addElement("root");for(inti=0;i<list.size();i++)Stringtemp=(String)list.get(i);Elementvalue=root.addElement("value");value.addText(temp);doc.asXML();再用流的方式保存物理文件就好了,需要加载dom4的jar包
解决方案十:
用dom4j,循环
解决方案十一:
publicstaticvoidListToXml(Listlist)throwsIOExceptiondoc=DocumentHelper.createDocument();doc.setXMLEncoding("UTF-8");Elementroot=doc.addElement("员工");for(Personperson:(List<Person>)list)Elementchild=root.addElement(person.getName());child.addAttribute("员工ID",person.getId());child.addAttribute("年龄",person.getAge()+"");child.addAttribute("员工职位",person.getJob());child.addAttribute("薪资",person.getSalary()+"");OutputFormatformat=OutputFormat.createPrettyPrint();XMLWriterwriter=newXMLWriter(newFileWriter(newFile("e:\dom.xml")),format);writer.write(doc);writer.close();
以上是关于java中怎么把list的信息写入到xml的主要内容,如果未能解决你的问题,请参考以下文章