我有一个最奇怪的问题。我有一个java类,它将一些数据写入文件。当我在eclipse中执行它时,一切正常(以正确的编码写入数据)。但是当我将它作为独立的JAR运行时,编码就会被破坏。
我的项目中有这个(在pom.xml中):
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
我的java类在eclipse中具有属性(右键单击 - &gt;属性)文件编码设置为: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工作,但只有当我检查编写结果的文件时才会被编码。
答案 0 :(得分:2)
您向我们展示的所有设置确实指定了用于编辑和编译代码的编码。
它没有说明运行代码时使用的编码。
显然,eclipse使用的jvm使用UTF-8作为其file.encoding
属性。
你独立的jvm为其file.encoding属性使用另一个值。
此外,当您读取数据时会出现问题,而不是在您明确指定输出的“UTF-8”编码时进行写入时出现问题。
你有2个解决方案:
解决方案1:
您永远不会使用默认编码读取任何内容(始终通过指定正确的编码来创建读者)。
解决方案2:
你告诉你的jvm应该是什么默认编码:
java -Dfile.encoding=UTF-8 ...
答案 1 :(得分:0)
你必须明白你的eclipse环境与独立环境不同,我会把钱花在jar文件中缺少的类上。当您在eclipse中导出jar文件时,请确保打包引用的jar文件,否则您的程序将失败。程序失败时是否有任何堆栈跟踪?