亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

蒙阴县| 桐柏县| 上蔡县| 桓仁| 阳城县| 云林县| 塔城市| 那曲县| 尼木县| 哈尔滨市| 呼图壁县| 梁山县| 宝山区| 荥经县| 五台县| 陆川县| 海淀区| 于都县| 望都县| 长兴县| 赣州市| 揭西县| 五家渠市| 财经| 西吉县| 河津市| 东港市| 密云县| 镇安县| 乐都县| 西吉县| 县级市| 廉江市| 南靖县| 叶城县| 浦城县| 定日县| 石楼县| 屏山县| 宜川县| 尚义县|