使用JSON将对象从服务器(PHP)发送到客户端(Java)

时间:2014-01-07 09:32:30

标签: java php android json

我想要实现的是使用PHP中的JSON发送一个Object,并将其作为Java中的对象接收。当我使用下面的代码时,它从java中提供JSON异常,说String不能转换为JSONObject。我将非常感谢你的帮助。感谢

PHP代码

<?php

  require_once("/classes/Login.class.php");//Class that connect to the database
  $user = $_GET['ballername'];
  $pass = $_GET['ballerpassword'];
  $log = new Login($user, $pass);
  $log->connect();
  //header('Content-type: application/json');

  $correct = array('success'=> true)

  echo json_encode($log);

?>

JAVA代码

public class UserLoginTask extends AsyncTask<Void, Void, Boolean> {
ConnectToServer connectToServer = null;
String urlstring = null;
Campusian campusian;
@Override
protected Boolean doInBackground(Void... params) {
    // TODO: attempt authentication against a network service.

    urlstring = CampusPalURL.LOGIN_URL +"ballername=" + mUserName +"&ballerpassword="+mPassword;


    HttpClient client = new DefaultHttpClient();
    HttpGet getMethod = new HttpGet(urlstring);

    HttpResponse response;
    boolean confirmation;
    try {
        response = client.execute(getMethod);
        HttpEntity httpEntity = response.getEntity();
        String state = EntityUtils.toString(httpEntity);
        Log.e("STTTTTTTTTTTTTTTTTTTTTTTTTTTT ", state);
        try {
            JSONObject jsonObject = new JSONObject(state);
            //JSONObject confirmation = jsonObject.getJSONObject("");
            confirmation = jsonObject.getBoolean("logged_in");
            return confirmation;
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            Log.e("Object: ", e.getMessage());
            e.printStackTrace();
        }
    } catch (IOException ee) {
        // TODO Auto-generated catch block
        Log.e("EXCEPTION: ", ee.getMessage());
        ee.printStackTrace();
    } 


    // TODO: register the new account here.
    return true;
}

日志错误

01-07 10:54:22.689: E/Object:(1022): Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject

我决定检查从Log中显示EntityUtils.toString(httpEntity)的服务器收到的输入这是我得到的。是不是?

  01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <html xmlns="http://www.w3.org/1999/xhtml">
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <head>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <title>Untitled Document</title>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): </head>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <body>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <html xmlns="http://www.w3.org/1999/xhtml">
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <head>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <title>Untitled Document</title>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): </head>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): <body>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): </body>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): </html>{"logged_in":true} </body>
 01-07 11:44:37.171: E/STTTTTTTTTTTTTTTTTTTTTTTTTTTT(1380): </html>

2 个答案:

答案 0 :(得分:0)

您不应该将DOCTYPE或HTML标记添加到PHP输出中,只需回显(或消亡)JSON内容。

答案 1 :(得分:0)

小会话示例:

    session_start(); 
    $_SESSION['uid'] = $u_id; 
    $result = mysql_query("UPDATE USER SET USER_SESSION ='".session_id()."' WHERE user_id=$u_id"); 
    $arr = array('Data' => null,'Code' => null); 
    $arr['Code'] = 200; 
    $arr['Data']['Session_ID'] = session_id(); 
    echo json_encode($arr); 
    exit; 

我使用[Data]返回任何数据,使用[Code]获取错误代码,非常方便解析和证明。