无法将中文字符写入文件名

时间:2015-08-25 04:47:12

标签: java file internationalization

public static void main(String[] args) throws IOException
{
    Scanner in = new Scanner(System.in);
    String fileName = in.nextLine();

    Writer out = new BufferedWriter(new OutputStreamWriter(
            new FileOutputStream("C:/temp/"+fileName+".txt"), "UTF-8"));//Ex thrown
    out.close();
}

我正在尝试创建一个可以处理中文字符到文件名的编写器。所以我可以创建一个名为你好.txt的文件。

但是我使用上面的代码获得FileNotFoundException,它对英文字符完全正常,但不适用于中文字符。

我按照这里的答案:How to write a UTF-8 file with Java?生成上面的代码,但它不起作用。

任何人都知道如何实现这一目标?

堆栈追踪:

Exception in thread "main" java.io.FileNotFoundException: C:\temp\??.txt (The filename, directory name, or volume label syntax is incorrect)
    at java.io.FileOutputStream.open0(Native Method)
    at java.io.FileOutputStream.open(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)

使用NIO:

Path path = Paths.get("C:/temp/"+fileName+".txt");//throws ex
Charset charset = Charset.forName("UTF-8");
Path file = Files.createFile(path);
BufferedWriter  bufferedWriter = Files.newBufferedWriter(file, charset);
bufferedWriter.close();

堆栈:

Exception in thread "main" java.nio.file.InvalidPathException: Illegal char <?> at index 8: C:/temp/?.txt
    at sun.nio.fs.WindowsPathParser.normalize(Unknown Source)
    at sun.nio.fs.WindowsPathParser.parse(Unknown Source)
    at sun.nio.fs.WindowsPathParser.parse(Unknown Source)
    at sun.nio.fs.WindowsPath.parse(Unknown Source)
    at sun.nio.fs.WindowsFileSystem.getPath(Unknown Source)
    at java.nio.file.Paths.get(Unknown Source)

1 个答案:

答案 0 :(得分:5)

我发现这个问题与eclipse控制台的字符编码有关,与atomicAdd( &res[1], 1 );无关。

我使用了相同的代码并使用了不同的Java,如下所示,

enter image description here

现在运行程序后,我在控制台中得到了以下输出,

Run Configuration

结论 :运行配置Exception in thread "main" java.io.FileNotFoundException: C:\temp\??.txt (The filename, directory name, or volume label syntax is incorrect) at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.<init>(FileOutputStream.java:206) at java.io.FileOutputStream.<init>(FileOutputStream.java:95) at Test.main(Test.java:21) 中的ISO-8859-1编码将无法从控制台正确读取这些字符,因为控制台有不同的字符编码,您将Scanner作为??

请更改控制台的字符编码,我坚信您正在使用某些IDE。可能是你已经改变了,或者你的控制台继承了字符编码,而不是编码那些字符。