博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java HttpURLConnection 下载图片 图片全是“加密图片”文字,怎么解决?
阅读量:6587 次
发布时间:2019-06-24

本文共 1578 字,大约阅读时间需要 5 分钟。

package com.qzf.util; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; public class ReadMdImg { public static void main(String[] args) throws IOException { HttpURLConnection con = (HttpURLConnection) new URL("http://www.madeinchina.cn/gongshang/CorpSel/InfoShowImg.aspx?StrCode=40E4972E6CF94E842C5574E9DCD4CEDB5B42D00BE36AB7E9886F8D2139C47C79").openConnection(); con.setRequestMethod("GET"); String cookie = "ASP.NET_SessionId=1p4pck552n2exv45acuonnm0; UserInfo=cardmunber=001000040762&logins=1&searchs=0&FIRST_DATE=2017/11/9&END_DATE=2018/11/9&IS_ZZ=0&CORP_NAME=%e5%bc%a0%e6%a0%8b%e6%a2%81&ADDS=1&LINKMAN=%e5%bc%a0%e6%a0%8b%e6%a2%81&TEL=15995885383; FengYe=RowCount=638577&PageCount=11611"; con.setRequestProperty("Cookie", cookie); con.setRequestProperty("User-Agent", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)"); con.setRequestProperty("Host", "www.madeinchina.cn"); con.setRequestProperty("Accept", "text/html, application/xhtml+xml, */*"); con.setRequestProperty("Accept-Language", "zh-CN"); con.setRequestProperty("Accept-Encoding", "gzip, deflate"); con.setRequestProperty("Referer", "http://www.madeinchina.cn/gongshang/login.aspx"); InputStream in = con.getInputStream(); FileOutputStream out = new FileOutputStream("E:\\gongshang.jpg"); byte[] buf = new byte[1024]; int len = -1; while((len = in.read(buf)) > 0){ out.write(buf, 0, len); } out.flush(); out.close(); in.close(); con.disconnect(); } }

转载地址:http://znhno.baihongyu.com/

你可能感兴趣的文章
强化学习随记
查看>>
如何快速搭建静态资源服务器
查看>>
Android项目实战登录&注册
查看>>
Android 4.0以上设备虚拟按键中显示Menu键
查看>>
Xcode 创建自定义模板
查看>>
PHP之内置web服务器
查看>>
程序员的小技能,1行代码修改开机密码、1张图片让你电脑死机
查看>>
spring framwork解析
查看>>
吸猫就吸Tomcat之Pipeline-Valve巧妙设计
查看>>
分析JQ作者的类实现过程
查看>>
Uranus Ex通过完善自身,影响更广阔的金融衍生品市场
查看>>
[smali] This Handler class should be static or leaks might occur
查看>>
由canvas实现btn效果有感
查看>>
对于原型链的彻底理解
查看>>
父组件和子组件同是使用 beforeDestroy 钩子 保存同一份数据
查看>>
基于better-scroll实现的类似ios选择器
查看>>
个人经验-项目命名规范
查看>>
[译]理解 Node.js 事件驱动架构
查看>>
01-执行上下文与变量对象
查看>>
React Native在Android当中实践(一)——背景介绍
查看>>