SAXException:尾随部分不允许使用内容

时间:2012-12-03 11:55:16

标签: java xml exception exception-handling

这让我发疯了。我已经将这段代码用于许多不同的项目,但这是第一次给我这种类型的错误。这是整个XML文件:

  <layers>
    <layer name="Layer 1" h="400" w="272" z="0" y="98" x="268"/>
    <layer name="Layer 0" h="355" w="600" z="0" y="287" x="631"/>
  </layers>

以下是我的自制Xml类中的一段代码,它使用DocumentBuilderFactory来解析输入的Xml:

public static Xml parse(String xmlString)
    {
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setNamespaceAware(true);
        Document doc = null;
        //System.out.print(xmlString);
        try
        {
            doc = dbf.newDocumentBuilder().parse(
                    new InputSource(new StringReader(xmlString)));
            // Get root element...
            Node rootNode = (Element) doc.getDocumentElement();
            return getXmlFromNode(rootNode);
        } catch (ParserConfigurationException e)
        {
            System.out.println("ParserConfigurationException in Xml.parse");
            e.printStackTrace();
        } catch (SAXException e)
        {
            System.out.println("SAXException in Xml.parse ");
            e.printStackTrace();
        } catch (IOException e)
        {
            System.out.println("IOException in Xml.parse");
            e.printStackTrace();
        }
        return null;
    }

我正在使用它的上下文是:用于生成Photoshop类型图像处理应用程序的学校项目。正在使用.png和此xml文件的图层保存文件,以获取.zip文件中图层的位置等。我不知道压缩是否会增加一些神秘的额外字符。

感谢您的反馈意见。

4 个答案:

答案 0 :(得分:11)

如果你在编辑器中查看该文件,你会在最终元素后面看到内容(可能是空白),例如。

</layers>  <-- after here

使用一个突出显示空白字符的工具,例如

,这是值得的
$ cat -v -e my.xml

将转储'不可打印的'字符。

答案 1 :(得分:6)

希望这在某些方面对某人有帮助。有效的修复只是使用带子字符串的lastIndexOf()。这是原地代码:

public void loadFile(File m_imageFile)
{
   try
   {
     ZipFile zipFile = new ZipFile(m_imageFile);

     ZipEntry xmlZipFile = zipFile.getEntry("xml");

     byte[] buffer = new byte[10000];
     zipFile.getInputStream(xmlZipFile).read(buffer);
     String xmlString = new String(buffer);
     Xml xmlRoot = Xml.parse(xmlString.substring(0, xmlString.lastIndexOf('>')+1));
     for(List<Xml> iter = xmlRoot.getNestedXml(); iter != null; iter = iter.next())
     {
       String layerName = iter.element().getAttributes().getValueByName("name");
       m_view.getCanvasPanel().getLayers().add( 
           new Layer(ImageIO.read(zipFile.getInputStream(zipFile.getEntry(layerName))), 
               Integer.valueOf(iter.element().getAttributes().getValueByName("x")),
               Integer.valueOf(iter.element().getAttributes().getValueByName("y")),
               Integer.valueOf(iter.element().getAttributes().getValueByName("w")),
               Integer.valueOf(iter.element().getAttributes().getValueByName("h")),
               Integer.valueOf(iter.element().getAttributes().getValueByName("z")),
               iter.element().getAttributes().getValueByName("name"))
        );
     }
     zipFile.close();
   } catch (FileNotFoundException e)
   {
     System.out.println("FileNotFoundException in MainController.loadFile()");
     e.printStackTrace();
   } catch (IOException e)
   {
       System.out.println("IOException in MainController.loadFile()");
       e.printStackTrace();
   }

}

感谢所有贡献的人。我怀疑错误是由zip进程或使用byte []缓冲区引入的。任何进一步的反馈表示赞赏。

答案 2 :(得分:2)

我在XML的末尾有一些额外的字符,正确检查XML或执行XML的在线格式,如果XML不正确将导致错误。我用了 Online XML Formatter

答案 3 :(得分:0)

我在Sterling Integrator中遇到此错误 - 当我在十六进制编辑器中查看文件时 它有大约5行额外的char(0),而不是空格。不知道他们来自哪里,但这恰恰是问题所在,特别是因为我基本上是在进行统一变换,所以xsl引擎 - 在本例中是xalan - 显然是将它传递给结果。在最后一个近角括号后移除了额外的行,问题解决了。