91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java _io_文件的拷貝,面向對象風格

發布時間:2020-07-12 09:20:07 來源:網絡 閱讀:217 作者:wx5d21d5e6e5ab1 欄目:編程語言

//文件拷貝,以程序為中轉站,從一個文件到另一個文件
可處理圖片和文本
思路:
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();
            }
        }

}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

松阳县| 定日县| 南平市| 田阳县| 读书| 乌鲁木齐县| 游戏| 仙居县| 彭泽县| 丰城市| 古交市| 延庆县| 陆川县| 响水县| 浑源县| 汝城县| 郴州市| 邢台县| 甘洛县| 全州县| 桓台县| 防城港市| 丰顺县| 莱阳市| 罗山县| 岗巴县| 林西县| 泉州市| 阳新县| 蕉岭县| 黑龙江省| 乐平市| 佛山市| 西乡县| 绥中县| 龙州县| 驻马店市| 甘孜县| 临清市| 义马市| 安平县|