您好,登錄后才能下訂單哦!
//文件拷貝,以程序為中轉站,從一個文件到另一個文件
可處理圖片和文本
思路:
type[] flush = new type[1024]
在 .read(flush) ,時已將將內容存儲到字節數組,只需再進行寫出即可
os.write(flush,0,len)然后刷新緩存,os.flush()
public class test{
private String path;
private String path3;
private int len;
private File first;
private File last;
private InputStream is;
private OutputStream os;
public static void main(String[]args)
{
test t=new test("C:/Users/10853/eclipse-workspace/hell/src/hell/abc","D:/d/last");
t.copy();
}
public test(String s,String s2)
{
this.path=s;
this.path3=s2;
first=new File(this.path);
last=new File(this.path3);
try{
is=new FileInputStream(first);
os=new FileOutputStream(last);
}catch(FileNotFoundException e)
{
e.printStackTrace();
}
}
public void copy()
{
//分段讀取
**byte[] flush =new byte[1024];**
**try {**
**while((len=is.read(flush))!=-1)**
** {**
**os.write(flush,0,len); **
**os.flush();** //寫出后要刷新
**}***
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally {
try {
if(os!=null)
{
os.close();
}
if(is!=null)
{
is.close();
}
}catch(IOException e)
{
e.printStackTrace();
}
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。