读写数据

Posted 王耀辉1

tags:

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

使用fileinputStream 和FileoutputStream读写文件。

public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
//新建一个对象
FileInputStream in =new FileInputStream("E:/java/qwer/qwer.txt");
//
byte[] a =new byte [100];
int i1 =0;
while(i1 != -1){
System.out.print(new String(a,0,100));//a储存读取数据的缓冲区;0数组a的起始偏移量;读取的最大字节数;
i1 = in.read(a);
}

in.close();
}

}

以上是关于读写数据的主要内容,如果未能解决你的问题,请参考以下文章

什么是数据库的读写分离

为啥数据库读写分离能提高数据库的性能?

数据清洗文件操作--csv txt文件读写excel文件读写数据库文件读写

为啥数据库读写分离可以提高性能

EXCEL VBA怎么读写SQLSERVER 数据库

数据库为啥要读写分离