您好,登錄后才能下訂單哦!
需求說明
實現(xiàn)思路
見代碼注釋
代碼內(nèi)容
使用IO復(fù)制圖片
import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; /** * @auther::9527 * @Description: 第十題 * @program: 多線程 * @create: 2019-08-10 00:26 */ public class Tenth { public static void main(String[] args) { FileInputStream fis = null; FileOutputStream fos = null; try { //確定輸入輸出的文件名 fis = new FileInputStream("c:/a.jpg"); fos = new FileOutputStream("c:/b.jpg"); //設(shè)定判定器,判定是否讀取完畢 int temp = 0; //開始讀取數(shù)據(jù),如果沒有讀完就繼續(xù)讀,按read()方法所說,讀完會成為-1,若取值不為-1,則持續(xù)讀取 while ((temp = fis.read())!=-1){ //將讀取到的信息寫入文件 fos.write(temp); } System.out.println("已將c盤的a.jpg復(fù)制為b.jpg"); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } try { //關(guān)閉輸出流和輸入流 fos.close(); fis.close(); } catch (IOException e) { e.printStackTrace(); } } }
運行結(jié)果
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。