• 解决eclipse中的Java文件,使用idea打开的乱码问题


    吐槽:

    在克隆一些Github上面资源的时候,使用idea打开,会出现乱码的情况:confounded:

    而使用eclipse打开,这种情况就会消失。「是因为eclipse使用的是GBK编码,idea使用的是utf-8」

    这种情况困扰了我好几次,我也试过各种软件再转码,但是没丁儿用!

    终于,今天又碰到了;

    是可忍,孰不可忍!

    于是自己写了一个Java类,专门用来将GBK编码的Java文件,转换成utf-8编码:v:

    ps:改一改,可以将utf-8,转换成GBK

    技术点:递归,IO流

    代码

    以下是代码,如果是mac操作系统,以下代码应该不会有什么问题;

    注意:

    1、如果是window系统,文件路径/需要转换成\ (好像是的吧?)

    2、强烈建议不要进行二次转换,更不要进行多次转换!!!

    3、最好将需要转换的文件夹/文件复制一份,以免出现编码转换的意外

    4、没了,以下代码有注释

    1. package com.project_generator.eclipseConvert;
    2. import org.junit.Test;
    3. import java.io.*;
    4. import java.util.List;
    5. /**
    6. * 建议:最好将需要转换的文件夹/文件复制一份,以免出现编码转换的意外
    7. * 注意:不要进行二次转换,还有一定要确定被转换的文件是GBK格式的【一般,如果eclipse的文件放到idea中乱码,多半是GBK格式的】
    8. */
    9. public class Converter {
    10. // 复制完全一样的文件,包含文件夹里面的所有内容【略--手动处理】
    11. public static void main(String[] args) throws IOException {
    12. new Converter().converter(new File("这里填写自己文件夹or文件的绝对路径"));
    13. }
    14. @Test
    15. public void converter(File file) throws IOException {
    16. convertEclipseFiles(file); // 【必改,文件的路径】
    17. System.out.println("转换成功!");
    18. }
    19. public void convertEclipseFiles(File file) throws IOException {
    20. if (!file.exists()) {
    21. throw new RuntimeException("此文件或文件夹不存在");
    22. }
    23. if (file.isFile() && file.getName().endsWith(".java")) { //【可改,将eclipse里面的Java文件编码改成utf-8
    24. //!! 重写文件,最后删除原来的文件
    25. String absolutePath = file.getAbsolutePath();
    26. File file1 = new File(absolutePath.substring(0, absolutePath.length() - 5) + "_copy" + ".java");
    27. convertEncoding(file,file1);
    28. file.delete();
    29. file1.renameTo(new File(absolutePath));
    30. }
    31. if (!file.isFile()) {
    32. File[] fs = file.listFiles();// 获取当前文件夹下的子文件夹或者文件的file对象
    33. if (fs != null && fs.length > 0) {
    34. for (File ff : fs) {
    35. convertEclipseFiles(ff);// 递归
    36. }
    37. }
    38. }
    39. }
    40. /*
    41. * 目标:把1.txt内容复制到2.txt
    42. */
    43. public void convertEncoding(File oldFile, File newFile) throws IOException {
    44. FileInputStream fis = new FileInputStream(oldFile);
    45. FileOutputStream fos = new FileOutputStream(newFile);
    46. byte[] content = new byte[1024];
    47. int read = fis.read(content);
    48. while (read != -1) {
    49. // System.out.println(new String(content, 0, read, "GBK")); // 查看read的结果
    50. fos.write(new String(content, 0, read, "GBK").getBytes("utf-8"));
    51. read = fis.read(content);
    52. }
    53. }
    54. }

    来源:https://www.cnblogs.com/cjin-01/p/16632660.html

  • 相关阅读:
    json字符串转map集合||发送短信阿里&&腾讯
    基于JavaWeb+MySQL的简历信息管理系统
    【Spring笔记02】Spring中的IOC容器和DI依赖注入介绍
    多线程初阶(一)
    python循环时循环体一会多一会少,这个思路值得参考
    Git操作总结
    【Python】pyecharts 模块 ② ( 命令行安装 pyecharts 模块 | PyCharm 安装 pyecharts 模块 )
    从一道面试题看函数柯里化
    go-gin-api 本地部署调试问题总结
    js基础知识点
  • 原文地址:https://blog.csdn.net/Chenhui98/article/details/126578005