如果你的JAVA部署的tomcat,就是你要查詢檔案的伺服器,那就用:
File file = new File("檔案路徑")。
如果你本地的JAVA想要訪問遠端的一個伺服器的檔案是否存在,就得用如下方法:
URL url = new URL(“檔案路徑:可以是本地伺服器的路徑,也可以是遠端伺服器的路徑”)
HttpURLConnection urlcon = (HttpURLConnection) url.openConnection();
//message = urlcon.getHeaderField(0);
//檔案存在‘HTTP/1.1 200 OK’ 檔案不存在 ‘HTTP/1.1 404 Not Found’
Long TotalSize=Long.parseLong(urlcon.getHeaderField("Content-Length"));
if (TotalSize>0){
return true;
}else{
return false;
}
如果你的JAVA部署的tomcat,就是你要查詢檔案的伺服器,那就用:
File file = new File("檔案路徑")。
如果你本地的JAVA想要訪問遠端的一個伺服器的檔案是否存在,就得用如下方法:
URL url = new URL(“檔案路徑:可以是本地伺服器的路徑,也可以是遠端伺服器的路徑”)
HttpURLConnection urlcon = (HttpURLConnection) url.openConnection();
//message = urlcon.getHeaderField(0);
//檔案存在‘HTTP/1.1 200 OK’ 檔案不存在 ‘HTTP/1.1 404 Not Found’
Long TotalSize=Long.parseLong(urlcon.getHeaderField("Content-Length"));
if (TotalSize>0){
return true;
}else{
return false;
}