2
我有以下代碼爲url連接,它會引發異常但異常對象爲空。如何連接到一個URL沒有任何異常在Android 2.2Android2.2網址連接異常
HttpURLConnection urlConnection= null;
URL url = null;
try
{
url = new URL(urlString.toString());
urlConnection=(HttpURLConnection)url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.setDoInput(true);
urlConnection.connect();
}
catch(Exception ex)
{//ex is empty here}
如果你把'Log.d( 「TAG」,ex.getMessage());'它出現在logcat的? –
是的。它顯示在日誌貓作爲網絡主線程異常 – ArathyAnand
你能告訴我們什麼是例外嗎? –