能不能用JAVA编写一个程序从网上下载一张图片呢?求完整程序!

 我来答
450349429
2013-05-21
知道答主
回答量:10
采纳率:0%
帮助的人:5.9万
展开全部
package com.capinfotech.net; 
     
import java.io.ByteArrayOutputStream; 
import java.io.File; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.net.HttpURLConnection; 
import java.net.URL; 
     
public class ImageRequest { 
     
     
    public static void main(String[] args) throws IOException { 
        URL url = new URL("https://gss0.baidu.com/7Po3dSag_xI4khGko9WTAnF6hhy/album/w%3D2048/sign=1bb39918cdbf6c81f7372be88806b035/9345d688d43f879423f3355ed31b0ef41bd53ab5.jpg"); 
        HttpURLConnection conn = (HttpURLConnection)url.openConnection(); 
        InputStream inputStream = conn.getInputStream();   //通过输入流获得图片数据 
        byte[] getData = readInputStream(inputStream);     //获得图片的二进制数据 
             
        File imageFile = new File("tupian.jpg");   
        FileOutputStream fos = new FileOutputStream(imageFile);    
        fos.write(getData); 
        fos.close(); 
             
        System.out.println(" read picture success"); 
    } 
     
    public static  byte[] readInputStream(InputStream inputStream) throws IOException { 
        byte[] buffer = new byte[1024]; 
        int len = 0; 
        ByteArrayOutputStream bos = new ByteArrayOutputStream(); 
        while((len = inputStream.read(buffer)) != -1) { 
            bos.write(buffer, 0, len); 
        } 
             
        bos.close(); 
        return bos.toByteArray(); 
    } 
}
拉普拉斯妖007
2020-07-16 · TA获得超过371个赞
知道答主
回答量:101
采纳率:100%
帮助的人:31.2万
展开全部
private static void download(String picUrl, String pathName) throws Exception {
URL url = new URL(picUrl);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setConnectTimeout((int) TimeUnit.SECONDS.toMillis(30L));
try(InputStream inputStream = connection.getInputStream();
FileOutputStream outputStream = new FileOutputStream(new File(pathName))) {
byte[] buffer = new byte[1024];
int len;
while((len = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, len);
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友add258539
2011-12-21 · 超过12用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:20.3万
展开全部
能准确一点描述你的问题吗?
更多追问追答
追问
就是利用URL和io流实现从网上下载一张图片并保存到电脑中。求指教
追答
你是想做下载功能吧?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式