java如何保存網頁上的圖片

package mySource;


import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;


public class downLoadImg{
    public static void main(String args[]){
        String  name = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date());
        String path = "D:/image/";                      /*把要下載的圖片存檔在img文件夾下*/
        File dir = new File(path);
        if(!dir.exists())
             dir.mkdir();                                                /*如果目錄不存在則創建目錄*/
        path += name + ".jpg";
        download("http://cdn.duitang.com/uploads/item/201203/04/20120304132522_UiwaR.thumb.600_0.jpeg",path);
    }
    public static void download(String strUrl,String path){
       URL url = null;
       try {
              url = new URL(strUrl);
       } catch (MalformedURLException e2) {
             e2.printStackTrace();
             return;
       }


       InputStream is = null;
        try {
            is = url.openStream();
        } catch (IOException e1) {
            e1.printStackTrace();
            return;
        }


        OutputStream os = null;
        try{
            os = new FileOutputStream(path);
            int bytesRead = 0;
            byte[] buffer = new byte[8192];
            while((bytesRead = is.read(buffer,0,8192))!=-1){               /*buffer數組存放讀取的字節,如果因爲流位於文件末尾而沒有可用的字節,則返回值-1,以整數形式返回實際讀取的字節數*/
            os.write(buffer,0,bytesRead);
       }
       }catch(FileNotFoundException e){
           e.printStackTrace();
           return;
       } catch (IOException e) {
           e.printStackTrace();
           return;
      }
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章