zoukankan      html  css  js  c++  java
  • 两个关于XML解析报错问题小记

    Caused by: org.xml.sax.SAXParseException: The string "--" is not permitted within comments.  


    XML文件的注释(<!-- -->)中包含了字符串"--",例如

    <!-- draft表数据不进入VSearch>

    <ref bean="draftProductAssemble"> <!-- draft表 -->

    整个XML片段会被注释掉,但在做XML解析的时候,会出现如上的错误,因为在注释中间包含了字符串"--",如红色部分所属。解决办法,分段进行注释,修改注释如下:

     

    <!-- draft表数据不进入VSearch -->

    <!-- ref bean="draftProductAssemble" --> <!-- draft表 -->



    nested exception is java.io.UTFDataFormatException: Invalid byte 3 of 3-byte UTF-8 sequence.

    xml文件中的中文由于编码原因乱码导致的改问题,最简单的解决办法就是将XML文件中的中文注释删除,换成英文注释,或者找出导致中文乱码的原因,解决中文乱码的问题,已经可以解决该问题。


  • 相关阅读:
    bzoj1467 Pku3243 clever Y
    bzoj2242 [SDOI2011]计算器
    卡特兰数
    洛谷P1290 欧几里得的游戏
    bzoj2277 [Poi2011]Strongbox
    poj2406 Power Strings
    Codeforces 892 D.Gluttony
    Codeforces 892 C.Pride
    Codeforces 892 B.Wrath
    Codeforces 892 A.Greed
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3226185.html
Copyright © 2011-2022 走看看