当前位置: 代码迷 >> J2EE >> 如何把网络图片存到数据库中,是网络上的连接图片
  详细解决方案

如何把网络图片存到数据库中,是网络上的连接图片

热度:116   发布时间:2016-04-22 01:23:08.0
怎么把网络图片存到数据库中,是网络上的连接图片啊
在web区发了这个帖子,没人鸟我,着急呀~~


http://topic.csdn.net/u/20120527/13/356bcf6b-1fa6-4d16-ae39-489f2019d4f4.html

------解决方案--------------------
Java code
URL url = new URL("http://x.limgs.cn/f1/g/110916/l201125817443114e731a7f6890c.jpg");HttpURLConnection http = (HttpURLConnection) url.openConnection();InputStream in = http.getInputStream();
  相关解决方案