這篇文章主要介紹“java8的Nio通道之間的數(shù)據(jù)傳輸舉例分析”,在日常操作中,相信很多人在java8的Nio通道之間的數(shù)據(jù)傳輸舉例分析問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”java8的Nio通道之間的數(shù)據(jù)傳輸舉例分析”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)為客戶提供專業(yè)的成都網(wǎng)站制作、做網(wǎng)站、程序、域名、空間一條龍服務(wù),提供基于WEB的系統(tǒng)開發(fā). 服務(wù)項(xiàng)目涵蓋了網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、成都做手機(jī)網(wǎng)站等網(wǎng)站方面業(yè)務(wù)。
/* * 通道之間的數(shù)據(jù)傳輸(直接緩沖區(qū)) * transferFrom * transferTo * */@Testpublic void test3(){ FileChannel inChannel=null; FileChannel outChannel=null; try { inChannel=FileChannel.open(Paths.get("1.jpg"), StandardOpenOption.READ); outChannel=FileChannel.open(Paths.get("4.jpg"),StandardOpenOption.READ,StandardOpenOption.WRITE,StandardOpenOption.CREATE_NEW); // inChannel.transferTo(0, inChannel.size(), outChannel); // 和上面一行代碼道理一個(gè)意思 outChannel.transferFrom(inChannel, 0, inChannel.size()); }catch (IOException e){ e.printStackTrace(); }finally {if(inChannel!=null){try { inChannel.close(); } catch (IOException e) { e.printStackTrace(); } }if(outChannel!=null){try { outChannel.close(); } catch (IOException e) { e.printStackTrace(); } } } }
到此,關(guān)于“java8的Nio通道之間的數(shù)據(jù)傳輸舉例分析”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!