读完这篇文章后,我一直在尝试实现一个自定义数据类型,供 RelaxNG XML 验证器 (Jing) 使用。我已经成功地通过命令行运行了由 Jing (他们称之为datatype-sample
)提供的示例实现,但我一直无法从 java 代码中做到这一点。
从命令行(Windows):
> set CLASSPATH=path\to\jing-20091111\bin\jing.jar;path\to\jing-20091111\sample\datatype\datatype-sample.jar
> cd path\to\jing-20091111\sample\datatype
> java com.thaiopensource.relaxng.util.Driver datatype-sample.rng valid.xml
验证执行没有任何问题。但现在我正在尝试使用以下 java 代码中的相同数据类型库:
package rngdatatype;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import javax.xml.XMLConstants;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;
import javax.xml.validation.Validator;
import org.xml.sax.SAXException;
public class Main {
public static void main(String[] args) throws UnsupportedEncodingException, FileNotFoundException, SAXException, IOException {
// make sure our jars are on classpath
System.out.println("Classpath: " + System.getProperty("java.class.path"));
// args
String rng = args[0];
String xml = args[1];
File rngFile = new File(rng);
File xmlFile = new File(xml);
// setup rng validator through JAXP
System.setProperty(SchemaFactory.class.getName() + ":" + XMLConstants.RELAXNG_NS_URI, "com.thaiopensource.relaxng.jaxp.XMLSyntaxSchemaFactory");
SchemaFactory rngSchemaFactory = SchemaFactory.newInstance(XMLConstants.RELAXNG_NS_URI);
// obtain a schema object
InputStreamReader rngReader = new InputStreamReader(new FileInputStream(rngFile), "UTF-8");
Schema schema = rngSchemaFactory.newSchema(new StreamSource(rngReader));
// validate using schema based validator
Validator validator = schema.newValidator();
InputStreamReader xmlReader = new InputStreamReader(new FileInputStream(xmlFile), "UTF-8");
validator.validate(new StreamSource(xmlReader));
}
}
第一个参数是具有以下内容的文件的路径:
<element name="balancedString"
xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.thaiopensource.com/relaxng/datatypes/sample">
<data type="balancedString"/>
</element>
第二个参数是具有以下内容的文件的路径:
<balancedString>foo(bar(baz))</balancedString>
这给了我以下输出:
Classpath: path\to\RNGDataType\lib\datatype-sample.jar;path\to\RNGDataType\lib\jing.jar;path\to\RNGDataType\build\classes;path\to\RNGDataType\src
Exception in thread "main" org.xml.sax.SAXParseException: datatype library "http://www.thaiopensource.com/relaxng/datatypes/sample" not recognized
...
这清楚地表明无法解析数据类型。据我所知,这个工作的唯一要求(在jing.jar
类路径上都有)已经得到满足。datatype-sample.jar
那么我做错了什么?
PS:要使上述代码正常工作,您必须将jing.jar
anddatatype-sample.jar
放在类路径上并为其提供参数,其中第一个是路径,datatype-sample.rng
第二个是路径valid.xml
或invalid.xml
。所有这些都与靖一起分发。
Edit1:java -jar
当作为具有适当MANIFEST.MF
文件的 JAR ( ) 运行时,上述程序在我的 IDE 之外也不起作用。手动设置类路径 ( ) 时也不起作用java -classpath
。所以我怀疑实际代码有问题。