思想在于,将大文件内容分成若干的小内容分批次进行发送。
package Io;
import java.io.*;public class IOBase {
public static void main(String args[])
{
FileInputStream in=null;
FileOutputStream out=null;
byte[] b=new byte[10];
try {//输入流的来源
in=new FileInputStream("E:/BaiduYunDownload/Java4Android/Java4Android/33_Java当中的IO(二)/from.txt");
//输出流的去向
out=new FileOutputStream("E:/BaiduYunDownload/Java4Android/Java4Android/33_Java当中的IO(二)/tdddddd.txt");
while(true)
{//进行输入操作
int num=in.read(b, 0, b.length);
if(num==-1)
{break;}
//进行输出操作
out.write(b,0,b.length);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally{
try {//释放关闭,相当于是水管子,当运水完成之后,进行拔管子操作
in.close();
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}