IDE无法在xsl文件中找到元素声明

时间:2018-01-05 09:53:50

标签: java xml eclipse eclipse-neon java-5

我在一个旧的java 5项目上工作,但我无法运行它。 在我尝试运行之前,Eclipse(Neon.2版本4.6.2)向我指出了这个错误:

cvc-elt.1 cannot find the declaration of element xsl:stylesheet

这里是错误的xml代码:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
    <xsl:output method="xml" encoding="UTF-8" />
    ....
    ....

Eclipse指示此行的错误(第3行):

 xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">

我理解错误,但我不知道如何解决它。 我该怎么做才能解决它?

0 个答案:

没有答案