一个可以行的方式读写中文文档的类
如果有问题欢迎和我联系qjt163@163.com
主要使用的是两个文件
ChineseFileReader:方法如下
构造方法
public ChineseFileReader(String file)throws IOException;
参数:file 文件名
public ChineseFileReader(File file)throws IOException;
参数:file 文件对象
从文件中读一行,如果返回null表示文件读完
public String readLine()throws IOException;
关闭对象
public void close() throws IOException;
ChineseWriter文件,方法如下:
构造方法
public ChineseFileWriter(String file)throws IOException;
参数:file文件名
public ChineseFileWriter(File file)throws IOException;
参数:file文件对象
向文件中写入一行字符串,然后换行
public void println(String line) throws IOException;
参数:line 字符串
向文件中写入一行字符串,不换行
public void print(String line) throws IOException;
参数:line 字符串