java创建中文文件名文件
作者:互联网
java在linux环境创建中文文件名文件,文件UTF-8编码,代码如下:
private static void createCnFile() { try { String fileName = "中文名文件.txt"; String newName = new String(fileName.getBytes(), "UTF-8"); File f1 = new File(newName); if (!f1.exists()) { f1.createNewFile(); } }catch (Exception e) { } }
windows中创建中文文件名文件,文件GBK编码,代码如下:
private static void createCnFile() { try { String fileName = "中文名文件11.txt"; File f1 = new File(fileName); if (!f1.exists()) { f1.createNewFile(); } }catch (Exception e) { } }
标签:f1,中文,java,String,文件名,fileName,文件,File,new 来源: https://www.cnblogs.com/SaraMoring/p/16688977.html