我的 android 应用程序正在与一个 web 服务通信,该服务返回一个 JSONObject、一个整数和一个对象中的 2 个值。但不知何故,我似乎无法将它们转换回一个 int 和一个对象。
我用我的 检索的值JSONObject
:
{"d":{"__type":"Datalayer.User","med_ID":24,"geb_GUID":"8bb4894b-92f7-45af-9a40-b99d7a06a506"}}
这是我正在使用的代码:
public class TUser {
// Publics
public int UserID;
public String Username;
public String Password;
public String License;
public String DeviceId;
public Boolean Authenticated;
public Object gebGUID;
SharedPreferences prefs;
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // //
public TUser()
{
this.UserID = -1;
this.Username = "";
this.Password = "";
this.License = "";
this.DeviceId = "123";
this.Authenticated = false;
this.gebGUID = null;
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // //
public void AuthenticateUser(Context context) {
// Vars
JSONObject inputObject = new JSONObject();
StringEntity seParams = null;
JSONObject output = null;
String result = "0";
//standaard waarde
this.Authenticated = false;
// Create JSONObject with all the needed parameters for this call
try {
inputObject.put("UserName", this.Username);
inputObject.put("Password", this.Password);
inputObject.put("License", this.License);
inputObject.put("DeviceId", this.DeviceId);
seParams = new StringEntity(inputObject.toString());
} catch (Exception e) {
TLogFile.appendLog("e", "log_tag", "Error creating object " + e.toString());
}
// Create the HTTPRequest
TWebserviceHelper h = new TWebserviceHelper();
result = h.ExecuteAction(context, seParams, "/Login", 10000, 10000);
//bij geen result gaan we ook niet parsen
if (result == "")
{
return;
}
//try parse the string to a JSON object
try{
output = new JSONObject(result);
}catch(JSONException e){
TLogFile.appendLog("e", "log_tag", "Error parsing data "+e.toString());
}
try {
this.UserID = output.getInt("d");
this.gebGUID = output.get("geb_GUID");
if (this.UserID != 0){
this.Authenticated = true;
}else{
this.Authenticated = false;
}
} catch (JSONException e) {
e.printStackTrace();
}
}
}
我希望你们能看到问题。提前致谢