FileInputStream fis = new FileInputStream("filePath"); // filePath为文件路径 // 声明一个字节数组 byte[] b = new byte[1024]; StringBuffer str = new StringBuffer(); int len ; // 循环读取 while ((len = fis.read(b)) != -1) { str.append(new String(b, 0, len)); } System.out.println(str.toString());
相关文章
- 06-06关于IDEA解决控制台中文乱码的问题
- 06-06CLion中文乱码问题的解决方案
- 06-06Python BeautifulSoup中文乱码问题的2种解决方法
- 06-06如何解决表单提交的中文乱码问题
- 06-06后台获取requestbody中数据时出现中文乱码的解决方法
- 06-06GDAL打开HDF格式时遇到的中文路径问题(未解决)
- 06-06python读取文本时出现的问题和解决方法
- 06-06springMVC将处理的后的数据通过post方法传给页面时,可能会出现乱码问题,下面提出解决post乱码问题的方法
- 06-06SecureCRT终端显示中文乱码问题的解决方案
- 06-06不用下载字体解决Mac系统下Python的matplotlib库中文乱码的问题