java cdata xml 解析_java jdom 解析CDATA内容

package com;

import java.io.IOException;

import java.io.StringReader;

import java.util.List;

import org.jdom.CDATA;

import org.jdom.Comment;

import org.jdom.DocType;

import org.jdom.Document;

import org.jdom.Element;

import org.jdom.EntityRef;

import org.jdom.JDOMException;

import org.jdom.ProcessingInstruction;

import org.jdom.Text;

import org.jdom.input.SAXBuilder;

public class test {

public static void main(String[] args){

String xml =

"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" +

"" +

""+

"

"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" +

"seqInit20161126BLUS3110000001" +

"content测试内容" +

"resion测试" +

"]]>";

SAXBuilder builder = new SAXBuilder();

try {

Document document = builder.build(new StringReader(xml));

Element root = document.getRootElement();

Element data = root.getChild("SrvRoot");

//

// Reading the mixed content of an xml element and iterate

// the result list. This list object can contains any of the

// following objects: Comment, Element, CDATA, DocType,

// ProcessingInstruction, EntityRef and Text.

//

List content = data.getContent();

String result = "";

for (Object o : content) {

if (o instanceof Comment) {

Comment comment = (Comment) o;

System.out.println("Comment = " + comment);

} else if (o instanceof Element) {

Element element = (Element) o;

System.out.println("Element = " + element);

} else if (o instanceof CDATA) {

CDATA cdata = (CDATA) o;

result = cdata.getText();

System.out.println("CDATA = " + result);

} else if (o instanceof DocType) {

DocType docType = (DocType) o;

System.out.println("DocType = " + docType);

} else if (o instanceof ProcessingInstruction) {

ProcessingInstruction pi = (ProcessingInstruction) o;

System.out.println("PI = " + pi);

} else if (o instanceof EntityRef) {

EntityRef entityRef = (EntityRef) o;

System.out.println("EntityRef = " + entityRef);

} else if (o instanceof Text) {

Text text = (Text) o;

System.out.println("Text = " + text);

}

}

} catch (JDOMException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值