从cmd运行时如何显示希腊字符

时间:2018-08-12 07:01:46

标签: java cmd character-encoding fileoutputstream bufferedwriter

我制作了一个程序,该程序可以抓取网站并提取文本并将其写入.txt文件中。当我从Intelij Idea运行程序时,每一行都以希腊语正确打印。但是,当我从cmd运行jar文件时,希腊文字被写成乱码。

public class Logger extends Thread{
String input,path;
int matchNumber;
public Logger(String path0) {
    path=path0;
}
public void log (int matchesNumber0,String input0) {
    matchNumber=matchesNumber0;
    input=input0;
    this.run();
}
@Override
public void run() {
    BufferedWriter textWriter = null;
    DateFormat date = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
    Date today = Calendar.getInstance().getTime();
    String stringDateToday = date.format(today);
    if(input!=null) {
        try {
            String logFilePath = path;
            textWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(logFilePath), StandardCharsets.UTF_8));
            textWriter.write(stringDateToday + "-----" + matchNumber + "-----");
            textWriter.write(input + "\n");
            if (!input.contains(" content=")) {
                setWarningMsg(input);
            }

        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("Incorrect Log File path!!!");
        } finally {
            try {
                textWriter.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

cmd Output

2 个答案:

答案 0 :(得分:0)

在某些情况下,您用来查看文件的文本编辑器可能无法正确解码希腊文本文件。

如果您使用的是Unix(或Windows上的Cygwin),则file程序可能会提供帮助。该程序将查看前几个字节,以尝试猜测适当地打开文件的程序。否则尝试在Intellij本身中打开文件。

答案 1 :(得分:0)

chcp 65001 && java -jar -Dfile.encoding=UTF-8 path/to/your/runnable/jar

那解决了我的问题!