2020-03-30-TestFileCopy4中方式的文件拷貝-暫存

package com.niewj.nio;

import java.io.*;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

/**
 * @Author weijun.nie
 * @Date 2020/3/30 8:18
 * @Version 1.0
 */
public class TestFileCopy {

    public static void close(Closeable closeable){
        if(closeable != null){
            try {
                closeable.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    public static void main(String[] args) {
        // 1. 沒(méi)有buffer的 java.iostream
        FileCopyRunner nobufferStreamCopy= new FileCopyRunner() {
            @Override
            public void copyFile(File source, File target) {
                FileInputStream fIn = null;
                FileOutputStream fOut = null;
                try {
                    fIn = new FileInputStream(source);
                    fOut = new FileOutputStream(target);
                    int n ;
                    while((n = fIn.read()) != -1){
                        fOut.write(n);
                    }
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }finally {
                    close(fIn);
                    close(fOut);
                }

            }
        };
        FileCopyRunner bufferStreamCopy = new FileCopyRunner() {
            @Override
            public void copyFile(File source, File target) {
                BufferedInputStream bin = null;
                BufferedOutputStream bout = null;
                try {
                     bin = new BufferedInputStream(new FileInputStream(source));
                     bout = new BufferedOutputStream(new FileOutputStream(target));
                    byte[] buff = new byte[1024];
                    int len = -1;
                    while((len = bin.read(buff)) != -1){
                        bout.write(buff, 0, len);
                    }
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                } finally {
                    close(bin);
                    close(bout);
                }
            }
        };
        FileCopyRunner nioCopy = new FileCopyRunner() {
            @Override
            public void copyFile(File source, File target) {
                FileChannel channelIn = null;
                FileChannel channelout = null;
                try {
                    channelIn = new FileInputStream(source).getChannel();
                    channelout = new FileOutputStream(target).getChannel();

                    ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
                    int len = -1;
                    while((len = channelIn.read(byteBuffer)) != -1){
                        // flip后進(jìn)入buff讀模式, position和limit浮動(dòng)
                        byteBuffer.flip(); 
                        while(byteBuffer.hasRemaining()){
                            channelout.write(byteBuffer);
                        }
                        // buff讀完后clear, 清理buff并進(jìn)入寫模式, 準(zhǔn)備下一次寫(將channel中內(nèi)容寫入到buff)
                        byteBuffer.clear();
                    }
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                } finally {
                    close(channelIn);
                    close(channelout);
                }

            }
        };
        FileCopyRunner channelTransferCopy = new FileCopyRunner() {
            @Override
            public void copyFile(File source, File target) {
                FileChannel channelIn = null;
                FileChannel channelout = null;
                try {
                    channelIn = new FileInputStream(source).getChannel();
                    channelout = new FileOutputStream(target).getChannel();
                    
                    long len = source.length();
                    channelIn.transferTo(0, len, channelout);
                }catch (FileNotFoundException e){
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                } finally {
                    close(channelIn);
                    close(channelout);
                }
            }
        };
    }
}
interface FileCopyRunner{
    void copyFile(File source, File target);
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末微谓,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子仲智,更是在濱河造成了極大的恐慌姻氨,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,204評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件前联,死亡現(xiàn)場(chǎng)離奇詭異娶眷,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)茂浮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,091評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門席揽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人寸谜,你說(shuō)我怎么就攤上這事属桦。” “怎么了聂宾?”我有些...
    開封第一講書人閱讀 164,548評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)巾陕。 經(jīng)常有香客問(wèn)我纪他,道長(zhǎng)茶袒,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,657評(píng)論 1 293
  • 正文 為了忘掉前任亡资,我火速辦了婚禮展懈,結(jié)果婚禮上来惧,老公的妹妹穿的比我還像新娘演顾。我一直安慰自己,他們只是感情好葛虐,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,689評(píng)論 6 392
  • 文/花漫 我一把揭開白布棉钧。 她就那樣靜靜地躺著,像睡著了一般的诵。 火紅的嫁衣襯著肌膚如雪佑钾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,554評(píng)論 1 305
  • 那天瘪阁,我揣著相機(jī)與錄音邮偎,去河邊找鬼义黎。 笑死,一個(gè)胖子當(dāng)著我的面吹牛廉涕,可吹牛的內(nèi)容都是我干的艇拍。 我是一名探鬼主播宠纯,決...
    沈念sama閱讀 40,302評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼婆瓜,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了廉白?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,216評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤院溺,失蹤者是張志新(化名)和其女友劉穎磅轻,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谆膳,經(jīng)...
    沈念sama閱讀 45,661評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,851評(píng)論 3 336
  • 正文 我和宋清朗相戀三年纯续,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,977評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡睦尽,死狀恐怖型雳,靈堂內(nèi)的尸體忽然破棺而出当凡,到底是詐尸還是另有隱情纠俭,我是刑警寧澤,帶...
    沈念sama閱讀 35,697評(píng)論 5 347
  • 正文 年R本政府宣布朴则,位于F島的核電站钓简,受9級(jí)特大地震影響汹想,放射性物質(zhì)發(fā)生泄漏撤蚊。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,306評(píng)論 3 330
  • 文/蒙蒙 一槽唾、第九天 我趴在偏房一處隱蔽的房頂上張望匹中。 院中可真熱鬧,春花似錦顶捷、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,898評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至永高,卻和暖如春提针,著一層夾襖步出監(jiān)牢的瞬間命爬,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,019評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工饲宛, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留嗜价,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,138評(píng)論 3 370
  • 正文 我出身青樓家淤,卻偏偏與公主長(zhǎng)得像瑟由,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子绿鸣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,927評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容