您好,登錄后才能下訂單哦!
本文地址: http://blog.csdn.net/caroline_wendy
Http的URL鏈接, 會發生錯誤, 主要原因是 在主UI線程中, 使用網絡調用(network call), 就拋出NetworkOnMainThreadException異常.
版本: API level 11以上.
可以使用一個簡單的線程, 在后臺(asynctask)調用程序, 可以避免此情況;
否則 在getResponseCode()函數處, 拋出異常.
Android API : http://developer.android.com/reference/android/os/AsyncTask.html.
代碼:
String quakeFeed = getString(R.string.quake_feed); url = new URL(quakeFeed); URLConnection connection; connection = url.openConnection(); HttpURLConnection httpConnection = (HttpURLConnection)connection; int responseCode = httpConnection.getResponseCode();
Thread t = new Thread(new Runnable() { @Override public void run() { refreshEarthquakes(); } }); t.start();
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。