如何重新整理或清除HttpURLConnection的連線快取?

hgwnet發表於2005-09-11
專案需要定期與遠端伺服器同步資料,基於如下程式碼:
URL url = new URL("http://test.com/sales/info");
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);
connection.setUseCaches(false);

........
用上述程式碼在本地測試與遠端主機test.com連線。執行前連上adsl,一切ok。但若adsl在執行後才接通,本地將無法取得遠端主機資料,始終丟擲找不到test.com主機錯誤。
有經驗的同仁請指點一二,謝。

相關文章