日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > Android >内容正文

Android

android给后台传递json,将服务中的JSON数据发送到Android中的UI

發(fā)布時(shí)間:2024/1/23 Android 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android给后台传递json,将服务中的JSON数据发送到Android中的UI 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

要求是:我有一個(gè)后臺服務(wù),在該服務(wù)中,我正在執(zhí)行REST調(diào)用以獲取JSON數(shù)據(jù).我想將JSON數(shù)據(jù)發(fā)送到UI并更新內(nèi)容.

我可以使用的一種方法是,將整個(gè)JSON字符串存儲在SharedPreferences中,然后在UI中進(jìn)行檢索,但我認(rèn)為這樣做并不高效.

有想法嗎?我在UI中添加了一個(gè)Handler來更新元素,但是我對使用它并不熟悉.

樣本REST調(diào)用代碼:

DefaultHttpClient httpClient = new DefaultHttpClient();

HttpPost httpPost = new HttpPost(DATA_URL);

httpPost.setHeader("Content-Type", "application/json");

//passes the results to a string builder/entity

StringEntity se = null;

try {

se = new StringEntity(RequestJSON.toString());

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

//sets the post request as the resulting string

httpPost.setEntity(se);

//Handles what is returned from the page

ResponseHandler responseHandler = new BasicResponseHandler();

try {

HttpResponse response = (HttpResponse) httpClient.execute(httpPost, responseHandler);

// response will have JSON data that I need to update in UI

//Show notification

showNotification("Update Complete");

} catch (UnsupportedEncodingException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (ClientProtocolException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} finally {

// httpClient = null;

}

總結(jié)

以上是生活随笔為你收集整理的android给后台传递json,将服务中的JSON数据发送到Android中的UI的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。