您好,登錄后才能下訂單哦!
String httpUrl = "http://api.hcl100.com/index.php/Applist/search/paging/0"; /* 建立HTTP Get對象 */ HttpGet httpRequest = new HttpGet(httpUrl); try { /* 發送請求并等待響應 */ HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequest); /* 若狀態碼為200 ok */ if (httpResponse.getStatusLine().getStatusCode() == 200) { /* 讀 */ String strResult = EntityUtils.toString(httpResponse .getEntity()); /* 去沒有用的字符 */ System.out.println(strResult); } else { System.out.println("123123"); } } catch (ClientProtocolException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); }
出現new DefaultHttpClient().execute(httpRequest)空的話 另開線程解決
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。