3

我遇到了最奇怪的问题。我有一个将一些数据写入文件的 java 类。当我在 Eclipse 中执行它时,一切正常(以正确的编码写入数据)。但是当我将它作为独立的 JAR 运行时,编码被破坏了。

我的项目中有这个(在 pom.xml 中):

<properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

我的java类在eclipse(右键单击->属性)文件编码设置为:UTF-8。

这是截断的 java 代码,它执行附加:

 //class field
    static BufferedWriter wr;
public static void main(String[] args) throws IOException {
        OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(args[0], true), "UTF-8");
        wr = new BufferedWriter(writer);
        //.processing logic, building up what needs to be in the file, line by line
        wr.close();
    }

附加到 .csv 文件的相关方法:

private void writeToCSVFile(String content){

        try {
            System.out.println(content);
            wr.write(content);
            wr.write("\n");
            wr.flush();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

同样,当我在 Eclipse 中打印时,输出看起来就像在我要附加到的文件中一样。但是当作为独立的 jar 编码运行时,由于某种原因会中断。这就是我配置相关插件的方式:

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>install</id>
                        <phase>install</phase>
                        <goals>
                            <goal>sources</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <finalName>Worker</finalName>
                    <appendAssemblyId>false</appendAssemblyId>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <archive>
                        <manifest>
                            <mainClass>com.test.automation.Testing</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>

我真的不知道下一步该做什么。有任何想法吗?

此代码没有任何异常,不会在任何地方失败。当我检查写入结果的文件时,在 Eclipse 中完全按照预期运行。

它也可以作为独立的 jar 使用,但只有当我检查写入结果的文件时,编码才会被搞砸。

4

2 回答 2

2

您向我们展示的所有设置确实指定了用于编辑和编译代码的编码。

它没有说明您运行代码时使用的编码。

显然,eclipse 使用的 jvm 使用 UTF-8 作为其file.encoding属性。

您的独立 jvm 对其 file.encoding 属性使用另一个值。

此外,当您读取数据时会出现问题,而不是在您为输出明确指定“UTF-8”编码时写入数据时出现问题。

您有 2 个解决方案:

解决方案1:

您永远不会使用默认编码读取任何内容(始终通过指定正确的编码来创建阅读器)。

解决方案2:

你告诉你的 jvm 它的默认编码应该是什么:

java -Dfile.encoding=UTF-8 ...
于 2012-07-18T14:46:50.010 回答
0

您必须了解您的 Eclipse 环境与独立环境不同,我将把钱花在您的 jar 文件中缺少的类上。当您在 Eclipse 中导出 jar 文件时,请确保打包引用的 jar,否则您的程序将失败。程序失败时是否有任何堆栈跟踪?

于 2012-07-03T18:54:11.423 回答