我正在使用XmlBeans 2.6.0编译一些包含希腊单词枚举的XSD文件:
<xs:simpleType name="t_series_report">
<xs:restriction base="xs:string">
<xs:enumeration value="Γενική"/>
<xs:enumeration value="Ειδική"/>
</xs:restriction>
</xs:simpleType>
使用XmlBeans的ZIP二进制分发版的xbean.jar中包含的Ant任务执行编译。 XSD文件保存为utf-8,这也在头java文件
中正确说明<?xml version="1.0" encoding="UTF-8"?>
问题是XmlBeans生成的Java文件似乎保存在ANSI字符集中,在编译期间我遇到如下错误:
[xmlbean] C:\projects\myproject\workspace\prj\build\xmlbeans\test\src\com\company\project\schema\myschematype\cl\cle\ext\TMyType.java:61: illegal character: \8220
[xmlbean] static final int INT_ΓΕ�?ΙΚΉ = 1;
[xmlbean]
有没有办法强制XmlBeans将生成的Java文件保存为UTF-8而不是ANSI?
答案 0 :(得分:2)
我们在使用XMLBeans的maven任务编译包含希腊语“Omega”的某个模式时遇到了类似的问题。
问题是,XMLBeans(至少从版本2.5.0开始)始终使用Javas平台默认编码,这可能只能通过使用-Dfile.encoding=UTF-8
调用JVM来设置。
对于我们的Maven项目,解决方案是不使用插件;相反,我们使用exec
插件调用XMLBeans,因此我们可以控制编码。以下是pom.xml
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>exec-2.1.0</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-Dfile.encoding=${project.build.sourceEncoding}</argument>
<argument>-classpath</argument>
<!-- automatically creates the classpath using all project dependencies,
also adding the project build directory -->
<classpath/>
<argument>org.apache.xmlbeans.impl.tool.SchemaCompiler</argument>
<argument>-src</argument>
<argument>${project.build.directory}/generated-sources</argument>
<argument>-srconly</argument>
<argument>-d</argument>
<argument>${project.build.directory}/classes</argument>
<argument>-javasource</argument>
<argument>1.6</argument>
<argument>${basedir}/src/main/2.1.0/schema/</argument>
<argument>src/main/2.1.0/config/FooBar_v2.1.0.xsdconfig</argument>
</arguments>
</configuration>
</execution>
我认为这种方法也适用于Ant
。
更简单的解决方案就是像这样调用ant:
ant -Dfile.encoding=UTF-8 build-or-whatever
但是,如果您的所有源文件都是UTF-8,这显然会起作用!