当前位置: 技术问答>java相关
用URL访问www ,怎么判断是否能打开文件?
来源: 互联网 发布时间:2015-02-23
本文导语: public String ConnectToURL(/tech-qa-java/String srcURL_str/index.html) { String tempStr = "连接,并打开邮件原始信息"; try { URL srcURL = new URL(/tech-qa-java/srcURL_str/index.html) ; srcTxt_in = srcURL.openStream(); } catch (MalformedURLException e) { tempStr = ...
public String ConnectToURL(/tech-qa-java/String srcURL_str/index.html) {
String tempStr = "连接,并打开邮件原始信息";
try
{
URL srcURL = new URL(/tech-qa-java/srcURL_str/index.html) ;
srcTxt_in = srcURL.openStream();
} catch (MalformedURLException e) {
tempStr = "连接失败";
} catch (IOException ie) {
tempStr = "未找到文件";
}
//现阶段下面的判断是否有文件存在的语句不管用
if (srcTxt_in == null)
tempStr = "未找到文件";
return tempStr ;
}
现在这个srcTxt_in就一直是非null的值,尽管传进来的srcURL_str一定没有对应一个存在的文件!
我郁闷呀!
String tempStr = "连接,并打开邮件原始信息";
try
{
URL srcURL = new URL(/tech-qa-java/srcURL_str/index.html) ;
srcTxt_in = srcURL.openStream();
} catch (MalformedURLException e) {
tempStr = "连接失败";
} catch (IOException ie) {
tempStr = "未找到文件";
}
//现阶段下面的判断是否有文件存在的语句不管用
if (srcTxt_in == null)
tempStr = "未找到文件";
return tempStr ;
}
现在这个srcTxt_in就一直是非null的值,尽管传进来的srcURL_str一定没有对应一个存在的文件!
我郁闷呀!
|
Take a look at public int getResponseCode()
public String getResponseMessage()
of HttpURLConnection
public String getResponseMessage()
of HttpURLConnection