java 中使用dom4j解析含有特殊字符的xml文件出现了如题的错误

这个时候需要在特殊字符外面加上

  1. <![CDATA[
  2. /6169220648+20671/1>7+-47390045<5+>*8<39><05+173*0>4253-->*4-1062//8-7>>>+8030004009
  3. ]]>

<?xml version="1.0" encoding="utf-8"?>
<TagYSIData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" IdentityFlag="0" Message="">
 <szFpTaxCtl>
 <![CDATA[
 /6169220648+20671/1>7+-47390045<5+>*8<39><05+173*0>4253-->*4-1062//8-7>>>+8030004009
]]>
</szFpTaxCtl>
 <szFpCode>234000610101</szFpCode>
 <szFpSeriaoNo>00425873</szFpSeriaoNo>
 <szFpMachineNo>929100040029</szFpMachineNo>
 <szFpDate>2007-04-30</szFpDate>
 <szFpCarrierID>340102760830197</szFpCarrierID>
 <szFpTaxDepCode>23401700080</szFpTaxDepCode>
 <szFpReceicerID>320281755076476</szFpReceicerID>
 <szFpSenderID>+340121149265576</szFpSenderID>
 <szFpAgentCode></szFpAgentCode>
 <szFpCarriageSum>3876.60</szFpCarriageSum>
 <szFpTax></szFpTax>
 <szFpKind>01</szFpKind>
 <szFpImage>F:\Files\Upload\022013101710011111111.jpg</szFpImage>
 <szFpWorkDir>D:\工作区\SVN项目\PCM(图片识别程序)\AppStart\scanDLL\TaxScan\dll2\Image\</szFpWorkDir>
 <szFpType></szFpType>
 <szFpRealID></szFpRealID>
 <szFpFromToAddr></szFpFromToAddr>
 <szFpTaxAll></szFpTaxAll>
 <szFpCarNum></szFpCarNum>
 <szFpCarTonnage></szFpCarTonnage>
 <szFpremarks></szFpremarks>
</TagYSIData>

然后java代码解析就不会出现问题

import java.io.File;
import java.util.Iterator;

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

/**
 * XmlService.java
 * 版权所有(C) 2013
 * 创建:cuiran 2013-10-28 下午2:41:30
 */

/**
 * TODO
 * @author cuiran
 * @version 1.0.0
 */
public class XmlService {

public static void main(String[] args) {

		try{
			SAXReader reader = new SAXReader();
			Document document = reader.read(new File("E:\\022013101710011111111.xml")); 

			Element root = document.getRootElement();
			Iterator list  = root.elementIterator();
			while(list.hasNext())  {
				 Element resourceitem = (Element) list.next();
				 if(resourceitem.getName().equals("szFpTaxCtl")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpCode")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpSeriaoNo")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpMachineNo")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpDate")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpCarrierID")){
					 System.out.println(resourceitem.getData());
				 }

				 if(resourceitem.getName().equals("szFpTaxDepCode")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpReceicerID")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpSenderID")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpAgentCode")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpCarriageSum")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpTax")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpKind")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpImage")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpWorkDir")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpType")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpRealID")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpFromToAddr")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpTaxAll")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpCarNum")){
					 System.out.println(resourceitem.getData());
				 }
				 if(resourceitem.getName().equals("szFpCarTonnage")){
					 System.out.println(resourceitem.getData());
				 }

			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}

运行结果:

 /6169220648+20671/1>7+-47390045<5+>*8<39><05+173*0>4253-->*4-1062//8-7>>>+8030004009

234000610101
00425873
929100040029
2007-04-30
340102760830197
23401700080
320281755076476
+340121149265576

3876.60

01
F:\Files\Upload\022013101710011111111.jpg
D:\工作区\SVN项目\PCM(图片识别程序)\AppStart\scanDLL\TaxScan\dll2\Image\

The content of elements must consist of well-formed character data or markup的更多相关文章

  1. ibatis动态sql配置启动时提示:The content of elements must consist of well-formed character data...

    ibatis动态sql配置启动时提示:The content of elements must consist of well-formed character data... 2012-07-18 ...

  2. mybatis 报The content of elements must consist of well-formed character data or markup. 语法格式错误

    最近在写sql的时候 同时使用到了 >= 和 <= 之前只使用一个的时候 没有什么问题,今天同时使用到了两个,结果xml出现了The content of elements must co ...

  3. thymeleaf 解析html时,出现 SAXParseException: The content of elements must consist of well-formed characte

    thymeleaf 解析html时,出现 SAXParseException: The content of elements must consist of well-formed characte ...

  4. ibatis配置文件中的XML解析错误The content of elements must consist of well-formed character data or markup.

    在检查过所有的标签名都没有问题的情况下. xml中的小于号属于非法字符. SQL语句中则可能需要小于号,此时就需要用<![CDATA[  ]]>将小于号包裹,如此不会被xml解析器解析. ...

  5. ibatiS启动的异常 The content of elements must consist of well-formed character data or markup

    ibatiS启动的异常 The content of elements must consist of well-formed character data or markup 配置的动态SQL语句里 ...

  6. Cause: org.xml.sax.SAXParseException: The content of elements must consist of well-formed character data or markup.

    Caused by: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org ...

  7. Mybatis 异常: The content of elements must consist of well-formed character data or markup

    原因很简单:在ibatis的配置文件中不能出现小于号(>)     <delete id="deleteByPrimaryKey" parameterType=&quo ...

  8. MyBatis Sql语句中的转义字符

    1.在xml的sql语句中,不能直接用大于号.小于号要用转义字符 如果用小于号会报错误如下: org.apache.ibatis.builder.BuilderException: Error cre ...

  9. mybaits不能出现小于号

    org.xml.sax.SAXParseException; lineNumber: 146; columnNumber: 54; The content of elements must consi ...

随机推荐

  1. Swift中使用NSLog的问题

    在Swift中如果想要以如下方式执行NSLog,则编译器必定抱怨: class Foo {} NSLog("%@",Foo()) 因为Foo是原生Swift类不是继承自NSObje ...

  2. [ExtJS5学习笔记]第二十九节 sencha ext js 5.1.0中动态更换皮肤主题

    本文地址:http://blog.csdn.net/sushengmiyan/article/details/42016107 本文作者:sushengmiyan ------------------ ...

  3. 内存数据网格IMDG简介

    1 简介 将内存作为首要存储介质不是什么新鲜事儿,我们身边有很多主存数据库(IMDB或MMDB)的例子.在对主存的使用上,内存数据网格(In Memory Data Grid,IMDG)与IMDB类似 ...

  4. SSH网上商城---邮件发送

    注册网站账号的时候,都需要发送激活邮件,然后让注册的用户点击激活链接方可完成注册,不过话说回来,为什么注册的时候需要发送邮件呢?为什么不注册的时候直接激活呢?一定要收一封激活帐号的邮件?网站这样做的好 ...

  5. 向Github提交代码时遇到的一些问题

    今天分享一下我的一些小经验,那就是向github提交我们的代码.之前一直是直接使用的浏览器完成的代码的下载任务,没有使用过客户端,为了让自己在工作之前熟练使用GitHub,所以就有了下面的这篇博文了. ...

  6. [struts2学习笔记] 第二节 使用Maven搞定管理和构造Struts 2 Web应用程序的七个步骤

    本文地址:http://blog.csdn.net/sushengmiyan/article/details/40303897 官方文档:http://struts.apache.org/releas ...

  7. Android必知必会-使用okhttp的PUT方式上传文件

    注:如果移动端排版有问题,请看 简书版 (<-点击左边),希望CSDN能更好的支持移动端. 背景 公司的文件上传接口使用PUT协议,之前一直用的都是老项目中的上传类,现在项目中使用了okhttp ...

  8. Linux2.6--虚拟文件系统

          虚拟文件系统(有时也称作虚拟文件交换,更常见的是简称做VFS)作为内核子系统,为用户空间程序提供了文件和文件系统相关的接口.系统中的所有文件系统不但依赖VFS共存,而且也依赖VFS系统协同 ...

  9. mac 下终端 操作svn命令 以及出现证书错误的处理方法

    首先,转载地址:http://hi.baidu.com/zhu410289616/item/eaaf160f60eb0dc62f4c6b0e 还有一个地址:http://www.cnblogs.com ...

  10. Mysql大量插入数据时SQL语句的优化

    1) 对于Myisam类型的表,可以通过以下方式快速的导入大量的数据.     ALTER TABLE tblname DISABLE KEYS;    loading the data    ALT ...