x现在已知一个固定格式的图片,判断图片是否存在例如,http://127.0.0.1/image/201709091300.jpg
import java.net.URL;
import java.net.URLConnection;
// 将路径设成URL URL url = new URL(lastPath); // 返回一个 URLConnection 对象,它表示到 URL 所引用的远程对象的连接。 URLConnection uc = url.openConnection(); // 判断URL的状态,200表示成功 404 表示找不到。 int coun = ((HttpURLConnection) uc).getResponseCode();
时间: 2024-11-05 18:51:17