本文整理汇总了Java中com.sun.tools.xjc.api.SchemaCompiler.parseSchema方法的典型用法代码示例。如果您正苦于以下问题:Java SchemaCompiler.parseSchema方法的具体用法?Java SchemaCompiler.parseSchema怎么用?Java SchemaCompiler.parseSchema使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.tools.xjc.api.SchemaCompiler
的用法示例。
在下文中一共展示了SchemaCompiler.parseSchema方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generateFromSchema
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
/**
* Generates Java classes in targetPath directory given an XML schema.
*
* @param schemaFile file reference to the XML schema
* @param packageName package name for generated model classes
* @param targetPath directory where class source will be generated
* @return the generated code model
* @throws Exception failure during model generation
*/
public JCodeModel generateFromSchema(final File schemaFile, final String packageName,
final File targetPath) throws Exception {
final SchemaCompiler sc = XJC.createSchemaCompiler();
final FileInputStream schemaStream = new FileInputStream(schemaFile);
final InputSource is = new InputSource(schemaStream);
is.setSystemId(schemaFile.getAbsolutePath());
sc.parseSchema(is);
sc.forcePackageName(packageName);
final S2JJAXBModel s2 = sc.bind();
final JCodeModel jcm = s2.generateCode(null, null);
try (PrintStream status = new PrintStream(new ByteArrayOutputStream())) {
jcm.build(targetPath, status);
}
return jcm;
}
示例2: registerNamespace
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
private static void registerNamespace(SchemaCompiler sc, String namespace, String pkgName) throws Exception {
Document doc = XMLUtils.newDocument();
Element rootElement = doc.createElement("schema");
rootElement.setAttribute("xmlns", "http://www.w3.org/2001/XMLSchema");
rootElement.setAttribute("xmlns:jaxb", "http://java.sun.com/xml/ns/jaxb");
rootElement.setAttribute("jaxb:version", "2.0");
rootElement.setAttribute("targetNamespace", namespace);
Element annoElement = doc.createElement("annotation");
Element appInfo = doc.createElement("appinfo");
Element schemaBindings = doc.createElement("jaxb:schemaBindings");
Element pkgElement = doc.createElement("jaxb:package");
pkgElement.setAttribute("name", pkgName);
annoElement.appendChild(appInfo);
appInfo.appendChild(schemaBindings);
schemaBindings.appendChild(pkgElement);
rootElement.appendChild(annoElement);
File file = File.createTempFile("customized",".xsd");
FileOutputStream stream = new FileOutputStream(file);
try {
Result result = new StreamResult(stream);
Transformer xformer = TransformerFactory.newInstance().newTransformer();
xformer.transform(new DOMSource(rootElement), result);
stream.flush();
stream.close();
} catch (Exception e) {
e.printStackTrace();
}
InputSource ins = new InputSource(file.toURI().toString());
sc.parseSchema(ins);
file.delete();
}
示例3: compileModel
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
protected S2JJAXBModel compileModel(Types types, SchemaCompiler compiler, org.w3c.dom.Element rootTypes) {
Schema schema = (Schema) types.getExtensibilityElements().get(0);
compiler.parseSchema(schema.getDocumentBaseURI() + "#types1", rootTypes);
S2JJAXBModel intermediateModel = compiler.bind();
return intermediateModel;
}
示例4: compileModel
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
protected S2JJAXBModel compileModel(Types types, SchemaCompiler compiler, Element rootTypes) {
Schema schema = (Schema) types.getExtensibilityElements().get(0);
compiler.parseSchema(schema.getDocumentBaseURI() + "#types1", rootTypes);
S2JJAXBModel intermediateModel = compiler.bind();
return intermediateModel;
}
示例5: compileModel
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
private S2JJAXBModel compileModel(Types types, SchemaCompiler compiler, org.w3c.dom.Element rootTypes) {
Schema schema = (Schema) types.getExtensibilityElements().get(0);
compiler.parseSchema(schema.getDocumentBaseURI() + "#types1", rootTypes);
S2JJAXBModel intermediateModel = compiler.bind();
return intermediateModel;
}
示例6: compileModel
import com.sun.tools.xjc.api.SchemaCompiler; //导入方法依赖的package包/类
private S2JJAXBModel compileModel(Types types, SchemaCompiler compiler, Element rootTypes) {
Schema schema = (Schema) types.getExtensibilityElements().get(0);
compiler.parseSchema(schema.getDocumentBaseURI() + "#types1", rootTypes);
S2JJAXBModel intermediateModel = compiler.bind();
return intermediateModel;
}