Java中判断URL地址的图片是否有效

 我来答
西安IT优就业
2018-05-23 · TA获得超过1561个赞
知道小有建树答主
回答量:1108
采纳率:90%
帮助的人:184万
展开全部

下面给你分享一个小工具类,可以帮到你

  • /** 

  • * 判断网络图片是否存在 

  • * posturl 图片地址链接 

  • */  

  • public static String isImagesTrue(String posturl) throws IOException {  

  • URL url = new URL(posturl);  

  • HttpURLConnection urlcon = (HttpURLConnection) url.openConnection();  

  • urlcon.setRequestMethod("POST");  

  • urlcon.setRequestProperty("Content-type",  

  • "application/x-www-form-urlencoded");  

  • if (urlcon.getResponseCode() == HttpURLConnection.HTTP_OK) {  

  • System.out.println(HttpURLConnection.HTTP_OK + posturl  

  • + ":posted ok!");  

  • return "200";  

  • } else {  

  • System.out.println(urlcon.getResponseCode() + posturl  

  • + ":Bad post...");  

  • return "404";  

  • }  

  • }  

在上传图片的时候会生成一个图片地址链接,把这个链接调用这个工具类进行判断,如果返回200,则图片上传成功,返回其他则图片地址有误,或者上传失败。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式