Idea 使用FileInputStream读取桌面txt乱码
同样的问题Eclipse读取没问题。
public class Main { public static void main(String[] args) throws IOException, InterruptedException { File file = new File("/Users/James/Desktop/hhh.txt"); FileInputStream fis = new FileInputStream(file); byte[] arr = new byte[(int) file.length()]; String text = new String(arr); System.out.println(text); } }
你内容都已经是英文的了,还怎么乱码?
况且你这也没有读到文件内容啊!
######你内容都已经是英文的了,还怎么乱码?
况且你这也没有读到文件内容啊!
File file = new File("/Users/James/Desktop/haha.txt"); FileInputStream fis = new FileInputStream(file); byte[] arr = new byte[(int) file.length()]; fis.read(arr); String text = new String(arr); System.out.println(text);
找到问题所在了。 我只是设置了byte长度。没往数组里读文件。 少了fis.read(arr)
######编码转码 idea默认utf eclipse不设置是跟系统走的######去试试groovy 一行代码搞定 还不需要ide。。。命令行就ok了
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。