Java生成xml文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Java生成xml文件

Java生成xml文件

 2013/8/7 13:08:24  nujack  程序员俱乐部  我要评论(0)
  • 摘要:dom动态生成xml文件方法:publicStringflashPieCharts()throwsIOException,FileNotFoundException{//生成xml//创建根节点pieElementroot=newElement("pie");//根节点添加到文档中;DocumentDoc=newDocument(root);for(inti=0;i<5;i++){//创建节点sliceElementelements=newElement("slice")
  • 标签:文件 Java XML文件 XML
dom动态生成xml文件方法:
class="java">
public String flashPieCharts() throws IOException ,FileNotFoundException {
		
	//生成xml
	//创建根节点 pie
	Element root = new Element("pie");
	//根节点添加到文档中;   
	Document Doc = new Document(root);
	
	for(int i = 0;i < 5;i ++) {
		// 创建节点 slice
		Element elements = new Element("slice");
		// 给 slice 节点添加属性 title,值为群组名
		elements.setAttribute("title", "test");
		//elements.setAttribute("url", "xxx");
		// 设定节点值为数量
		elements.setText("100");
		root.addContent(elements);
	}
	Format format = Format.getPrettyFormat();
	XMLOutputter XMLOut = new XMLOutputter(format);
	// 输出 user.xml 文件
	XMLOut.output(Doc, new FileOutputStream("d:\\pie.xml",false));
	
	return "";
}
发表评论
用户名: 匿名