如何从给定的多个 XSD 生成 Castor mapping.xml 文件?

发布于 2024-10-12 12:05:21 字数 45 浏览 1 评论 0原文

如何从给定的多个 XSD 生成 Castor mapping.xml 文件?

How to generate Castor mapping.xml file from given multiple XSDs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぺ禁宫浮华殁 2024-10-19 12:05:21

导入 java.io.FileNotFoundException;
导入 java.io.FileOutputStream;
导入 java.io.OutputStream;
导入 java.io.OutputStreamWriter;
导入java.io.Writer;

//导入 org.exolab.castor.builder.SourceGenerator;
导入 org.exolab.castor.mapping.MappingException;
导入 org.exolab.castor.tools.MappingTool;

公共类 CastorMappingToolUtil {

public static void generate() throws MappingException, FileNotFoundException {
    MappingTool tool = new MappingTool();
    tool.setInternalContext(new org.castor.xml.BackwardCompatibilityContext());
    tool.addClass(ClassType.class);
    OutputStream file = new FileOutputStream("/path/to/xmlFile/gen_mapping.xml" ); 

    Writer writer = new OutputStreamWriter(file);
    tool.write(writer);
    //SourceGenerator.main(options);
}

/**
 * @param args
 */
public static void main(String[] args) {
    try {
        CastorMappingToolUtil.generate();
    } catch (MappingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

}

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;

//import org.exolab.castor.builder.SourceGenerator;
import org.exolab.castor.mapping.MappingException;
import org.exolab.castor.tools.MappingTool;

public class CastorMappingToolUtil {

public static void generate() throws MappingException, FileNotFoundException {
    MappingTool tool = new MappingTool();
    tool.setInternalContext(new org.castor.xml.BackwardCompatibilityContext());
    tool.addClass(ClassType.class);
    OutputStream file = new FileOutputStream("/path/to/xmlFile/gen_mapping.xml" ); 

    Writer writer = new OutputStreamWriter(file);
    tool.write(writer);
    //SourceGenerator.main(options);
}

/**
 * @param args
 */
public static void main(String[] args) {
    try {
        CastorMappingToolUtil.generate();
    } catch (MappingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文