博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IO操作,对文件内容进行读取和写入
阅读量:6521 次
发布时间:2019-06-24

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

hot3.png

从一个文件中获取内容,显示在页面上,并可以进行编辑。

点击保存后再将页面上的内容写入到文件中。

相当于对文件内容做了一次增删改查。

①刚开始是这样写的

/* * 读取文件内容 */public String readFileMethod(String path) throws IOException {		File file = new File(path);		if (!file.exists() || file.isDirectory())			throw new FileNotFoundException();		FileInputStream fis = new FileInputStream(file);		byte[] buf = new byte[1024];		StringBuffer sb = new StringBuffer();		while ((fis.read(buf)) != -1) {			sb.append(new String(buf, "UTF-8"));// 防止中文乱码			buf = new byte[1024];// 重新生成,避免和上次读取的数据重复		}		return sb.toString();	}
/* * 写数据到文件 */ 	public AjaxMsg writeFileMethod(String path, String arrCity) {		try {			File file = new File(path);			if (!file.exists()) {				file.createNewFile();			}			FileOutputStream out = new FileOutputStream(file, false);			StringBuffer sb = new StringBuffer();			sb.append(arrCity);			out.write(sb.toString().getBytes("utf-8"));			out.close();			return new AjaxMsg(true, "保存文件成功!");		} catch (Exception e) {			e.printStackTrace();			return new AjaxMsg(false, "保存文件失败!");		}	}

但是这样的效果是,个别中文出现乱码。原因是UTF-8字符大部分占用的是三个字节,而读取文件的时候是每次取1024个字节,导致出现乱码。

具体见:

②修改是这样

/* * 读取文件内容 */ public String readFileMethod(String path) throws IOException {		File file = new File(path);		if (!file.exists() || file.isDirectory())			throw new FileNotFoundException();		String arrCity_value = FileUtils.readFileToString(file, "UTF-8");		return arrCity_value;	}
/* * 写数据到文件 */ 	public AjaxMsg writeFileMethod(String path, String arrCity) {		try {			File file = new File(path);			if (!file.exists()) {				file.createNewFile();			}			FileUtils.write(file, arrCity, "UTF-8");			return new AjaxMsg(true, "保存文件成功!");		} catch (Exception e) {			e.printStackTrace();			return new AjaxMsg(false, "保存文件失败!");		}	}

这次用的是 org.apache.commons.io.FileUtils 工具类中的方法,直接调用即可,非常方便。

转载于:https://my.oschina.net/chinamummy29/blog/531828

你可能感兴趣的文章
vim一些挺方便的功能
查看>>
linux云自动化运维基础知识14(设备挂载)
查看>>
开源Java时间工具类Joda-Time体验
查看>>
创新突破:新华三发布WBC多业务无线控制器
查看>>
如何新建UML2项目?详细操作步骤介绍
查看>>
网络层IP编址
查看>>
webdriver+python下拉框的处理方式
查看>>
手机触屏滑动插件idangerous.swiper.js
查看>>
文件查找详解
查看>>
configure: error: Connot find php-config. Please add --with-php-config=PATH
查看>>
[精讲17] 组策略
查看>>
控制流
查看>>
interlij的快捷键
查看>>
如何在Rancher上运行Elasticsearch
查看>>
shell 找出数组元素中的最大值
查看>>
Vmware虚拟机linux系统混合模式上网
查看>>
MySQL在导入的时候遇到的错误
查看>>
nginx: [emerg] getpwnam(“www”) failed
查看>>
计算机网络(一)——互联网层
查看>>
MySQL 资源大全
查看>>