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) {

        }
    }

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/289164.html

(0)
上一篇 2022年9月13日
下一篇 2022年9月13日

相关推荐

发表回复

登录后才能评论