- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
XML基础笔记8
XML基础笔记 8
JDOM
JDOM是一种使用 XML 的独特 Java 工具包,用于快速开发 XML 应用程序。它的设计包含 Java 语言的语法乃至语义。
从上下载jdom包。
修改一个变量名,点击这个要修改的变量名,直至这些变量名同背景显示,然后alt+shift+r就可以修改,不要手动的去一个一个修改。
案例:
构造一个xml文件,并输出到文件中。
package com.jdom;
import java.io.FileOutputStream;
import org.jdom2.Attribute;
import org.jdom2.Comment;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
public class JdomTest01
{
public static void main(String[] args) throws Exception
{
Document document = new Document();
Element root = new Element(root);
Comment comment = new Comment(This is my comments);
document.addContent(root);
root.addContent(comment);
Element e = new Element(hello);
root.addContent(e);
e.setAttribute(sohu, );
Element e2 = new Element(world);
Attribute attr = new Attribute(test, hehe);
e2.setAttribute(attr);
e.addContent(e2);
e2.addContent(new Element(e3).setAttribute(a, b).setAttribute(c, d).setText(this is e3));
//输出文档
//系统默认是缩进2个空格
Format format = Format.getPrettyFormat();
//设置前面缩进4个空格
format.setIndent( );
XMLOutputter out = new XMLOutputter(format);
out.output(document, new FileOutputStream(D:\\jdom.xml));
}
}
运行结果:
案例2
从xml文件中读取信息,并解析:
package com.jdom;
import java.io.FileWriter;
import java.util.List;
import org.jdom2.Attribute;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.input.SAXBuilder;
import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
public class JdomTest02
{
public static void main(String[] args) throws Exception
{
SAXBuilder builder = new SAXBuilder();
Document document = builder.build(D:\\jdom.xml);
Element element = document.getRootElement();
System.out.println(element.getName());
Element hello = element.getChild(hello);
System.out.println(hello.getText());
ListAttribute list = hello.getAttributes();
for(int i = 0; i list.size(); i++)
{
Attribute attr = (At
您可能关注的文档
- 这些东西孕妇要慎用.doc
- 进站口栏杆广告牌安装工程.doc
- TFT基本架构原理.ppt
- TheGreatWall课件.ppt
- 连云港市小学生必读书目及必背古诗词.doc
- Thread概述.doc
- TM处理流程.docx
- TOFEL作文模板.doc
- TOEFL口语的部分答题模板与要点总结.doc
- TomatoDualwan双WAN免交换机多型号傻瓜教程.doc
- 2023年江苏省镇江市润州区中考生物二模试卷+答案解析.pdf
- 2023年江苏省徐州市邳州市运河中学中考生物二模试卷+答案解析.pdf
- 2023年江苏省苏州市吴中区中考冲刺数学模拟预测卷+答案解析.pdf
- 2023年江苏省南通市崇川区田家炳中学中考数学四模试卷+答案解析.pdf
- 2023年江西省吉安市中考物理模拟试卷(一)+答案解析.pdf
- 2023年江苏省泰州市海陵区九年级(下)中考三模数学试卷+答案解析.pdf
- 2023年江苏省苏州市高新二中中考数学二模试卷+答案解析.pdf
- 2023年江苏省南通市九年级数学中考复习模拟卷+答案解析.pdf
- 2023年江苏省南通市海安市九年级数学模拟卷+答案解析.pdf
- 2023年江苏省泰州市靖江外国语学校中考数学一调试卷+答案解析.pdf
文档评论(0)