中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

java中如何使用字節流復制文件

發布時間:2021-12-04 14:23:35 來源:億速云 閱讀:157 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關java中如何使用字節流復制文件,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

以前在學校,為了準備某個證書考試,預習的時候寫的。沒什么技術含量,主要是熟悉一下,j2se中基本控件的操作,以及事件的綁定,等等。

Example:

import java.io.*;  import java.util.Scanner;  /**   * java使用字節流復制圖像   * @author Administrator   *@time 2011年6月9日 19:55:10   */public class MyTest2 {        private String filename;  //文件名         private  double  filesize;       //文件大小       public static void main(String agrs[]){        MyTest2 tt2=new MyTest2();        String frompath="E:\\qq.png";        String topath="F:\\qq.png";        if(tt2.CheckFile(frompath, topath)){        tt2.CopyFile(frompath, topath);          }      }      //復制文件      public void  CopyFile(String frompath,String topath){          File file1=new File(frompath);//源文件路徑          File file2=new File(topath);//目標文件路徑          filename=file1.getName();          filesize=(file1.length())/1024/1024;          System.out.println("********************文件屬性********************");          System.out.println("源文件路徑:"+frompath);          System.out.println("目標文件路徑:"+topath);          System.out.println("文件名稱:"+filename);        System.out.println("文件大小:"+filesize+" MB");          int ch=0;          try{              FileInputStream fin=new FileInputStream(file1);              FileOutputStream fout=new FileOutputStream(file2);              ch=fin.read();              System.out.println("開始復制!");            long startTime=System.currentTimeMillis();   //獲取開始時間              while(ch!=-1){                  fout.write(ch);                  ch=fin.read();              }              long endTime=System.currentTimeMillis(); //獲取結束時間              System.out.println("程序運行時間: "+(endTime-startTime)+"ms");              System.out.println("復制完畢!");              //關閉流              fin.close();                fout.close();          }  catch(Exception e){              System.err.println("Error:  "+e);         }         }     //驗證文件是否存在      public boolean CheckFile(String frompath,String topath){          File file1=new File(frompath);//源文件路徑          File file2=new File(topath);//目標文件路徑          if(!file1.exists()){                      //文件不存在                 System.out.println("源文件不存在,請檢查路徑是否正確!");              return false;          }  else{              if(file2.exists()){                  System.out.println("目標文件已經存在,請選擇  覆蓋/取消  ?");                  System.out.println("1: 覆蓋    2:取消");                  try{                      Scanner sc=new Scanner(System.in);                      int a=sc.nextInt();                      if(a==1){                          System.out.println("你輸入的是1,操作將繼續,目標文件將被覆蓋。");                          return true;                      }else if(a==2){                          System.out.println("您輸入了2,操作將取消。");                          return false;                      }  else{                      System.out.println("輸入無效。。;");                      CheckFile(frompath, topath);                 return false; }                  }   catch(Exception ee){                      System.out.println("輸入無效。。;");                      CheckFile(frompath, topath);                      return false;                  }              }          }          return false;    }  }

java中如何使用字節流復制文件

關于“java中如何使用字節流復制文件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

博客| 略阳县| 左云县| 曲阳县| 湖州市| 普陀区| 当雄县| 永顺县| 隆林| 马鞍山市| 盈江县| 阿荣旗| 三亚市| 凤凰县| 合江县| 务川| 二连浩特市| 连南| 江源县| 灵石县| 龙山县| 白水县| 福贡县| 广安市| 重庆市| 平湖市| 安陆市| 石家庄市| 正蓝旗| 离岛区| 武穴市| 广东省| 台安县| 安塞县| 林西县| 博野县| 宕昌县| 芜湖市| 宁南县| 涿鹿县| 甘南县|