博客
关于我
Java文件字符输入流FileReader读取txt文件乱码问题
阅读量:327 次
发布时间:2019-03-04

本文共 792 字,大约阅读时间需要 2 分钟。

先上代码:

public class FileInAndOut {   	public static void main(String[] args) {   		//定义指定磁盘的文件的File对象		File file = new File("E:/大三下学期/Android/作业要求/java知识巩固/work5.txt");				if(! file.exists()){   			System.out.println("对不起,不包含指定路径的文件");		}else{   			//根据指定路径的File对象创建FileReader对象			try {   				FileReader fr = new FileReader(file);								char[] data = new char[51];			//定义char数组								int length = 0;								while((length = fr.read(data))>0){   			//循环读取文件中的数据					String str = new String(data,0,length);			//根据读取文件的内容创建String 对象					System.out.println(str);				//输出读取内容				}				fr.close();								//关闭流			} catch (Exception e) {   				// TODO Auto-generated catch block				e.printStackTrace();			}		}	}}

控制台输出结果如下:

在这里插入图片描述

原因是

Java中的字符流处理的最基本的单元是Unicode码元(大小2字节),所以,我们在保存的时候要将文件的编码格式改为utf-8

在这里插入图片描述

在这里插入图片描述

运行之后的结果为

在这里插入图片描述

转载地址:http://cooq.baihongyu.com/

你可能感兴趣的文章
nginx+php的搭建
查看>>
nginx+tomcat+memcached
查看>>
nginx+tomcat单个域名及多个域名配置
查看>>
Nginx+Tomcat实现动静分离
查看>>
nginx+Tomcat性能监控
查看>>
nginx+uwsgi+django
查看>>
nginx+vsftp搭建图片服务器
查看>>
Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
查看>>
nginx-vts + prometheus 监控nginx
查看>>
Nginx/Apache反向代理
查看>>
Nginx: 413 – Request Entity Too Large Error and Solution
查看>>
nginx: [emerg] getpwnam(“www”) failed 错误处理方法
查看>>
nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:
查看>>
nginx:Error ./configure: error: the HTTP rewrite module requires the PCRE library
查看>>
Nginx:objs/Makefile:432: recipe for target ‘objs/src/core/ngx_murmurhash.o‘解决方法
查看>>
nginxWebUI runCmd RCE漏洞复现
查看>>
nginx_rtmp
查看>>
Nginx、HAProxy、LVS
查看>>
nginx一些重要配置说明
查看>>
Nginx下配置codeigniter框架方法
查看>>