package com.http.test;


import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONTokener;


import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
//import android.widget.EditText;
import android.widget.TextView;


public class Http_testActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);


final TextView tv = (TextView) findViewById(R.id.result);
//final EditText ed = (EditText) findViewById(R.id.sendurl);
Button bt = (Button) findViewById(R.id.send);


bt.setOnClickListener(new OnClickListener() {// 创建第一个单击事件


public void onClick(View v) {

String strResult = null;


try {
String httpUrl = "http://10.10.10.10:61002/userMessage/cJobConsultationUnread.json?data=688656&client_id=20012&view_id=268800";
// HttpGet连接对象
HttpGet httpRequest = new HttpGet(httpUrl);
// 取得HttpClient对象
HttpClient httpclient = new DefaultHttpClient();
// 请求HttpClient,取得HttpResponse
HttpResponse httpResponse = httpclient.execute(httpRequest);
// 请求成功
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
// 取得返回的字符串
strResult = EntityUtils.toString(httpResponse
.getEntity());
tv.setText(strResult);
} else {
tv.setText("请求错误!");
}


} catch (Exception e) {


}

//返回的json串strResult={"status":0,"message":"OK","data":15}
try {

JSONTokener jsonParser = new JSONTokener(strResult);
JSONObject js = (JSONObject) jsonParser.nextValue();
// 接下来的就是JSON对象的操作了
System.out.println("status的值是:"+js.getString("status"));
System.out.println("message的值是:"+js.getString("message"));
System.out.println("data的值是:"+js.getInt("data"));

} catch (JSONException ex) {
// 异常处理代码
}


}


});


}
}

更多相关文章

  1. 类和 Json对象
  2. Drawable简单使用
  3. Android(安卓)Spinner
  4. android取得当前网络连接状态
  5. android获得系统时间(Handler)
  6. Android(安卓)中的 Looper 对象
  7. android传感器;摇一摇抽签功能
  8. Android(安卓)导航条效果实现(一) TabActivity+TabHost
  9. android制作一个简单登入界面的部分代码

随机推荐

  1. [Android]Android字体高度的研究
  2. Mac 安装 Android Studio
  3. 微信Android客户端后台保活经验分享
  4. android基础之RelativeLayout布局
  5. Android Log日志保存到本地并读取
  6. 【iOS-cocos2d-X 游戏开发之十三】详细讲
  7. 拥抱Android(安卓)Studio:从ADT到Android(
  8. Android之使用串口通信及协议解析
  9. Android中Gzip使用
  10. Android(安卓)使用RxJava+Retrofit +Real