我在一个旧的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">
我理解错误,但我不知道如何解决它。 我该怎么做才能解决它?