设为首页 加入收藏

TOP

Android访问php取回json数据
2014-11-24 03:27:08 来源: 作者: 【 】 浏览:1
Tags:Android 访问 php 取回 json 数据

php代码如下


$array = array(
'username'=>'杨铸',
'password'=>'123456',
'user_id'=>1
);
echo json_encode($array);


private void startUrlCheck(String username,String password)
{
HttpClient client = new DefaultHttpClient();
StringBuilder builder = new StringBuilder();


HttpGet myget = new HttpGet("http://10.0.2.2/android/index.php");
try {
HttpResponse response = client.execute(myget);
BufferedReader reader = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
for (String s = reader.readLine(); s != null; s = reader.readLine()) {
builder.append(s);
}
JSONObject jsonObject = new JSONObject(builder.toString());
String re_username = jsonObject.getString("username");
String re_password = jsonObject.getString("password");
int re_user_id = jsonObject.getInt("user_id");
setTitle("用户id_"+re_user_id);
Log.v("url response", "true="+re_username);
Log.v("url response", "true="+re_password);
} catch (Exception e) {
Log.v("url response", "false");
e.printStackTrace();
}}
其中http://10.0.2.2为android访问本机url的ip地址。对应电脑上测试的http://127.0.0.1


另外执行代码时会抛出异常


java.net.SocketException: Permission denied


此为应用访问网络的权限不足 在AndroidManifest.xml中,需要进行如下配置:

就加在

之前就好了
然后测试通过。


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Java中调用Delphi编写的DLL 下一篇编写 Android 触摸屏手势识别程序

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·你必须要弄懂的多线 (2025-12-25 04:22:35)
·如何在 Java 中实现 (2025-12-25 04:22:32)
·Java【多线程】单例 (2025-12-25 04:22:29)
·C++中智能指针的性能 (2025-12-25 03:49:29)
·如何用智能指针实现c (2025-12-25 03:49:27)