httpclient下载图片转base64

本文介绍了一个简单的Java程序,用于从指定URL下载图片并将其转换为Base64编码字符串。程序使用了Apache Commons HttpClient库来执行HTTP请求,并通过Base64编码将图片文件转换成字符串形式。
摘要由CSDN通过智能技术生成
    import org.apache.commons.httpclient.HttpClient;
    import org.apache.commons.httpclient.methods.GetMethod;
    import org.apache.commons.codec.binary.Base64;

    public static void main(String[] args)throws Exception {
        HttpClient client = new HttpClient();
        GetMethod get = new GetMethod("http://pic2.ooopic.com/12/22/94/30b1OOOPIC5c.jpg");
        client.executeMethod(get);
        File storeFile = File.createTempFile("temp",null);
        FileOutputStream output = new FileOutputStream(storeFile);
        output.write(get.getResponseBody());
        output.close();
        System.out.println(Base64Utils.fileToBase64(storeFile));
        storeFile.delete();
    }
    public static String fileToBase64(File file) throws Exception {
        byte[] data = new byte[0];
        if (file.exists()) {
            FileInputStream in = new FileInputStream(file);
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            byte[] cache = new byte[1024];
            int nRead = 0;
            while ((nRead = in.read(cache)) != -1) {
                out.write(cache, 0, nRead);
                out.flush();
            }
            out.close();
            in.close();
            data = out.toByteArray();
        }
        return new Base64().encodeToString(data);
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值