SAXException:尾部不允许使用内容

这真让我抓狂。 我已经将这些代码用于很多不同的项目,但这是第一次给我这种类型的错误。 这是整个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文件中图层的位置等。 我不知道压缩是否添加了一些神秘的额外字符。

感谢您的反馈。


如果您在编辑器中查看该文件,则会在结束元素之后看到内容(也许是空白),例如

</layers>  <-- after here

这是值得使用一个工具,将突出显示空白字符例如

$ cat -v -e my.xml

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


希望这对某些人有帮助。 工作的修复只是使用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 []缓冲区引入的。 任何进一步的反馈意见。


我在Sterling Integrator中遇到了这个错误 - 当我在十六进制编辑器中查看文件时,它有大约5行char(0),而不是空格。 不知道他们从哪里来,但这正是问题所在,特别是因为我基本上正在进行统一转换,所以xsl引擎 - 在这种情况下xalan - 显然将它传递给结果。 在最后一个关角支架后删除了多余的行,解决了问题。

链接地址: http://www.djcxy.com/p/5953.html

上一篇: SAXException: Content is not allowed in trailing section

下一篇: Java checked exception not in the function's throw specification?