Java学习——读写txt文件

Posted 蔡军帅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java学习——读写txt文件相关的知识,希望对你有一定的参考价值。

package HHH;
import java.io.*;
import static java.lang.System.out;

public class OpenFile {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        try{
            FileInputStream rf = new FileInputStream("openFile.txt");
            FileOutputStream wf = new FileOutputStream("write.txt");
            int n=512;
            byte buffer[] = new byte[n];//buffer就是个byte类型数组
            while((rf.read(buffer,0,n) != -1) && (n>0))//读取输入流
            {
                out.print(new String(buffer));//在屏幕中输出,强制转换成字符串
                wf.write(buffer,0,buffer.length);
                
            }
            out.println();
            rf.close();
            wf.close();
        }catch(IOException ioe){
            out.println(ioe);
        }catch(Exception e){
            out.println(e);
        }
    }

}

 

以上是关于Java学习——读写txt文件的主要内容,如果未能解决你的问题,请参考以下文章

用java分别以字节流和文本流方式实现文件的读写操作(先向test1.txt文件中写“各位同学:

java 中简述使用流进行读写文本文件的步骤?

Java中用FileInputStream和FileOutputStream读写txt文件,文件内容乱码的问题,另附循环代码小错误

JAVA中,使用字节流读写文件,为啥找不到文件的位置?请看补充:

java读写txt文件

java读写txt文件