android 解析数据org.json.JSONException时出错

1u4esq0p  于 2024-01-04  发布在  Android
关注(0)|答案(2)|浏览(164)

我在我的LogCat中得到这个错误:

  1. Error parsing data org.json.JSONException: Value  of type java.lang.String cannot be converted to JSONArray

字符串
下面是我可以给你看的每个文件!请尽快让我知道问题和解决方案。我猜是:1.也许问题是解析JSON数组中的数据。2.也许问题是我的php API,我想我没有正确编码json_encode,因为它给了我RAW JSON,就像一行中的每一个东西。
如下

  1. [{"uid":"120","name":"MyFirstName MyLastName"}]


也请让我知道,他们是一些不同的工作两种格式,1。原始JSON和2。意图JSON
下面是JSON格式

  1. [
  2. {
  3. "uid":"120",
  4. "name":"MyFirstName MyLastName"
  5. }
  6. ]


这里是JSONUseActivity.java

  1. package com.example.oncemore;
  2. import java.util.ArrayList;
  3. import org.apache.http.NameValuePair;
  4. import org.apache.http.message.BasicNameValuePair;
  5. import org.json.JSONArray;
  6. import org.json.JSONException;
  7. import org.json.JSONObject;
  8. import android.app.Activity;
  9. import android.os.Bundle;
  10. import android.os.StrictMode;
  11. import com.example.oncemore.CustomHttpClient;
  12. import android.util.Log;
  13. import android.view.View;
  14. import android.widget.Button;
  15. import android.widget.EditText;
  16. import android.widget.TextView;
  17. public class JSONUseActivity extends Activity {
  18. EditText email,password;
  19. Button submit;
  20. TextView tv; // TextView to show the result of MySQL query
  21. String returnString; // to store the result of MySQL query after decoding
  22. // JSON
  23. /** Called when the activity is first created. */
  24. @Override
  25. public void onCreate(Bundle savedInstanceState) {
  26. StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
  27. .detectDiskReads().detectDiskWrites().detectNetwork() // StrictMode is
  28. // most commonly
  29. // used to catch
  30. // accidental
  31. // disk or
  32. // network
  33. // access on the
  34. // application's
  35. // main thread
  36. .penaltyLog().build());
  37. super.onCreate(savedInstanceState);
  38. setContentView(R.layout.activity_jsonuse);
  39. email = (EditText) findViewById(R.id.email);
  40. password = (EditText) findViewById(R.id.password);
  41. submit = (Button) findViewById(R.id.submitbutton);
  42. tv = (TextView) findViewById(R.id.showresult);
  43. // define the action when user clicks on submit button
  44. submit.setOnClickListener(new View.OnClickListener() {
  45. public void onClick(View v) {
  46. // declare parameters that are passed to PHP script i.e. the
  47. ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
  48. // define the parameter
  49. postParameters.add(new BasicNameValuePair("email",email.getText().toString()));
  50. postParameters.add(new BasicNameValuePair("password",password.getText().toString()));
  51. String response = null;
  52. // call executeHttpPost method passing necessary parameters
  53. try {
  54. response = CustomHttpClient.executeHttpPost(
  55. "http://mywebsite.com/android/api.php",
  56. postParameters);
  57. // store the result returned by PHP script that runs MySQL
  58. // query
  59. String result = response.toString();
  60. // parse json data
  61. try {
  62. returnString = "";
  63. //I think the line below is creating some problem
  64. JSONArray jArray = new JSONArray(result);
  65. for (int i = 0; i < jArray.length(); i++) {
  66. JSONObject json_data = jArray.getJSONObject(i);
  67. Log.i("log_tag",
  68. "id: " + json_data.getInt("uid")+", name: " + json_data.getString("name"));
  69. // Get an output to the screen
  70. returnString += "\n" + json_data.getString("name")
  71. + " -> " + json_data.getInt("uid");
  72. }
  73. }catch (JSONException e) {
  74. Log.e("log_tag", "Error parsing data " + e.toString());
  75. }
  76. try {
  77. tv.setText(returnString);
  78. }
  79. catch (Exception e) {
  80. Log.e("log_tag", "Error in Display!" + e.toString());
  81. ;
  82. }
  83. }
  84. catch (Exception e) {
  85. Log.e("log_tag",
  86. "Error in http connection!!" + e.toString());
  87. }
  88. }
  89. });
  90. }


}
这里是CustomHttpClient.java

  1. package com.example.oncemore;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. import java.net.URI;
  6. import java.util.ArrayList;
  7. import org.apache.http.HttpResponse;
  8. import org.apache.http.NameValuePair;
  9. import org.apache.http.client.HttpClient;
  10. import org.apache.http.client.entity.UrlEncodedFormEntity;
  11. import org.apache.http.client.methods.HttpGet;
  12. import org.apache.http.client.methods.HttpPost;
  13. import org.apache.http.conn.params.ConnManagerParams;
  14. import org.apache.http.impl.client.DefaultHttpClient;
  15. import org.apache.http.params.HttpConnectionParams;
  16. import org.apache.http.params.HttpParams;
  17. import android.util.Log;
  18. public class CustomHttpClient {
  19. /** The time it takes for our client to timeout */
  20. public static final int HTTP_TIMEOUT = 30 * 1000; // milliseconds
  21. /** Single instance of our HttpClient */
  22. private static HttpClient mHttpClient;
  23. /**
  24. * Get our single instance of our HttpClient object.
  25. *
  26. * @return an HttpClient object with connection parameters set
  27. */
  28. private static HttpClient getHttpClient() {
  29. if (mHttpClient == null) {
  30. mHttpClient = new DefaultHttpClient();
  31. final HttpParams params = mHttpClient.getParams();
  32. HttpConnectionParams.setConnectionTimeout(params, HTTP_TIMEOUT);
  33. HttpConnectionParams.setSoTimeout(params, HTTP_TIMEOUT);
  34. ConnManagerParams.setTimeout(params, HTTP_TIMEOUT);
  35. }
  36. return mHttpClient;
  37. }
  38. /**
  39. * Performs an HTTP Post request to the specified url with the specified
  40. * parameters.
  41. *
  42. * @param url
  43. * The web address to post the request to
  44. * @param postParameters
  45. * The parameters to send via the request
  46. * @return The result of the request
  47. * @throws Exception
  48. */
  49. public static String executeHttpPost(String url, ArrayList<NameValuePair> postParameters) throws Exception {
  50. BufferedReader in = null;
  51. try {
  52. HttpClient client = getHttpClient();
  53. HttpPost request = new HttpPost(url);
  54. UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(postParameters);
  55. request.setEntity(formEntity);
  56. HttpResponse response = client.execute(request);
  57. in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
  58. StringBuffer sb = new StringBuffer("");
  59. String line = "";
  60. String NL = System.getProperty("line.separator");
  61. while ((line = in.readLine()) != null) {
  62. sb.append(line + NL);
  63. }
  64. in.close();
  65. String result = sb.toString();
  66. return result;
  67. } finally {
  68. if (in != null) {
  69. try {
  70. in.close();
  71. } catch (IOException e) {
  72. Log.e("log_tag", "Error converting result "+e.toString());
  73. e.printStackTrace();
  74. }
  75. }
  76. }
  77. }
  78. /**
  79. * Performs an HTTP GET request to the specified url.
  80. *
  81. * @param url
  82. * The web address to post the request to
  83. * @return The result of the request
  84. * @throws Exception
  85. */
  86. public static String executeHttpGet(String url) throws Exception {
  87. BufferedReader in = null;
  88. try {
  89. HttpClient client = getHttpClient();
  90. HttpGet request = new HttpGet();
  91. request.setURI(new URI(url));
  92. HttpResponse response = client.execute(request);
  93. in = new BufferedReader(new InputStreamReader(response.getEntity()
  94. .getContent()));
  95. StringBuffer sb = new StringBuffer("");
  96. String line = "";
  97. String NL = System.getProperty("line.separator");
  98. while ((line = in.readLine()) != null) {
  99. sb.append(line + NL);
  100. }
  101. in.close();
  102. String result = sb.toString();
  103. return result;
  104. } finally {
  105. if (in != null) {
  106. try {
  107. in.close();
  108. } catch (IOException e) {
  109. Log.e("log_tag", "Error converting result "+e.toString());
  110. e.printStackTrace();
  111. }
  112. }
  113. }
  114. }
  115. }


这里是api.php

  1. <?php
  2. require_once("../contactdb.php");
  3. $myusername=$_REQUEST["email"];
  4. $mypassword=$_REQUEST["password"];
  5. // To protect MySQL injection (more detail about MySQL injection)
  6. $myusername = stripslashes($myusername);
  7. $mypassword = stripslashes($mypassword);
  8. $myusername = mysql_real_escape_string($myusername);
  9. $mypassword = mysql_real_escape_string($mypassword);
  10. $sql="SELECT uid,name FROM u_info WHERE email='".$myusername."' AND password ='".$mypassword."'";
  11. $result=mysql_query($sql);
  12. // Mysql_num_row is counting table row
  13. $count=mysql_num_rows($result);
  14. if($count==1){
  15. while($row=mysql_fetch_assoc($result))
  16. $output[]=$row;
  17. echo json_encode($output);
  18. mysql_close();
  19. }else{
  20. echo "Error Occured!";
  21. }
  22. ?>


最后,当我后藤进入浏览器并像这样编写时,

  1. http://mywebsite.com/android/[email protected]&password=1234


我得到了这个JSON数组!

  1. [{"uid":"120","name":"MyFirstName MyLastName"}]


到目前为止,我谷歌,我已经找到了不同格式的JSON数组!我发现到处都是Intented Json。我的JSON数组目前是Raw Json格式。我找不到任何地方如何将Raw Json格式转换为Intented Json格式。
提前感谢各位!任何帮助将不胜感激!如果可能的话,请提供正确的代码!

ikfrs5lh

ikfrs5lh1#

这不是有效的JSON语法:

  1. {
  2. "employees": [
  3. { "firstName":"John" , "lastName":"Doe" },
  4. { "firstName":"Anna" , "lastName":"Smith" },
  5. { "firstName":"Peter" , "lastName":"Jones" }
  6. ]
  7. }

字符串
是有效的。
注:以下情况也有效:
第一个月
语法结构才是重要的部分,而不是缩进方面的格式。
另外,要使用返回的格式,需要从响应中删除子字符串,即去掉大括号周围的方括号。
在PHP中,我创建了一个适当的json响应,如下所示:

  1. // array for JSON response
  2. $response = array();
  3. $response["apps"] = array();
  4. $apps = array();
  5. $apps["name"] = $row["name"];
  6. $apps["package"] = $row["package"];
  7. $apps["version"] = $row["version"];
  8. $apps["dateversion"] = $row["dateversion"];
  9. array_push($response["apps"], $apps);
  10. $response["success"] = 1;
  11. echo json_encode($response);


这基本上给出了

  1. { "success":"1", "apps":{["name":"NAME", "package":"PACKAGE", "version":"VERSION", "dateversion":"DATEVERSION"]}}


它可以被任何您可以利用的JSON类的丰富示例正确解析。黑客攻击和使用子字符串手动删除前N个字符不是好的做法...

展开查看全部
mu0hgdu0

mu0hgdu02#

  1. org.json.JSONException: JavaBean object contains recursively defined member variable of key "cachedClass"
  2. at org.json.JSONObject.recursivelyDefinedObjectException(JSONObject.java:2921)
  3. at org.json.JSONObject.populateMap(JSONObject.java:1729)
  4. at org.json.JSONObject.<init>(JSONObject.java:360)
  5. at org.json.JSONObject.wrap(JSONObject.java:2699)
  6. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  7. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  8. at org.json.JSONObject.<init>(JSONObject.java:355)
  9. at org.json.JSONObject.wrap(JSONObject.java:2701)
  10. at org.json.JSONObject.wrap(JSONObject.java:2660)
  11. at org.json.JSONArray.addAll(JSONArray.java:1788)
  12. at org.json.JSONArray.<init>(JSONArray.java:156)
  13. at org.json.JSONObject.wrap(JSONObject.java:2681)
  14. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  15. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  16. at org.json.JSONObject.<init>(JSONObject.java:355)
  17. at org.json.JSONObject.wrap(JSONObject.java:2701)
  18. at org.json.JSONObject.wrap(JSONObject.java:2660)
  19. at org.json.JSONArray.addAll(JSONArray.java:1788)
  20. at org.json.JSONArray.<init>(JSONArray.java:156)
  21. at org.json.JSONObject.wrap(JSONObject.java:2681)
  22. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  23. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  24. at org.json.JSONObject.<init>(JSONObject.java:355)
  25. at org.json.JSONObject.wrap(JSONObject.java:2701)
  26. at org.json.JSONObject.wrap(JSONObject.java:2660)
  27. at org.json.JSONArray.addAll(JSONArray.java:1840)
  28. at org.json.JSONArray.<init>(JSONArray.java:208)
  29. at org.json.JSONObject.wrap(JSONObject.java:2684)
  30. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  31. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  32. at org.json.JSONObject.<init>(JSONObject.java:355)
  33. at org.json.JSONObject.wrap(JSONObject.java:2701)
  34. at org.json.JSONObject.wrap(JSONObject.java:2660)
  35. at org.json.JSONArray.addAll(JSONArray.java:1788)
  36. at org.json.JSONArray.<init>(JSONArray.java:156)
  37. at org.json.JSONObject.wrap(JSONObject.java:2681)
  38. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  39. at org.json.JSONObject.<init>(JSONObject.java:360)
  40. at org.json.JSONObject.wrap(JSONObject.java:2699)
  41. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  42. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  43. at org.json.JSONObject.<init>(JSONObject.java:355)
  44. at org.json.JSONObject.wrap(JSONObject.java:2701)
  45. at org.json.JSONObject.wrap(JSONObject.java:2660)
  46. at org.json.JSONArray.addAll(JSONArray.java:1788)
  47. at org.json.JSONArray.<init>(JSONArray.java:156)
  48. at org.json.JSONObject.wrap(JSONObject.java:2681)
  49. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  50. at org.json.JSONObject.<init>(JSONObject.java:360)
  51. at org.json.JSONObject.wrap(JSONObject.java:2699)
  52. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  53. at org.json.JSONObject.<init>(JSONObject.java:360)
  54. at org.json.JSONObject.wrap(JSONObject.java:2699)
  55. at org.json.JSONObject.populateMap(JSONObject.java:1735)
  56. at org.json.JSONObject.populateMap(JSONObject.java:1701)
  57. at org.json.JSONObject.<init>(JSONObject.java:355)
  58. at Class3.ParsingResponsebody.test2JsonResponse(ParsingResponsebody.java:49)
  59. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  60. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
  61. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  62. at java.base/java.lang.reflect.Method.invoke(Method.java:568)
  63. at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
  64. at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:598)
  65. at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:173)
  66. at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
  67. at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:824)
  68. at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:146)
  69. at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
  70. at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
  71. at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
  72. at org.testng.TestRunner.privateRun(TestRunner.java:794)
  73. at org.testng.TestRunner.run(TestRunner.java:596)
  74. at org.testng.SuiteRunner.runTest(SuiteRunner.java:377)
  75. at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:371)
  76. at org.testng.SuiteRunner.privateRun(SuiteRunner.java:332)
  77. at org.testng.SuiteRunner.run(SuiteRunner.java:276)
  78. at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
  79. at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
  80. at org.testng.TestNG.runSuitesSequentially(TestNG.java:1212)
  81. at org.testng.TestNG.runSuitesLocally(TestNG.java:1134)
  82. at org.testng.TestNG.runSuites(TestNG.java:1063)
  83. at org.testng.TestNG.run(TestNG.java:1031)
  84. at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
  85. at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
  86. at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
  87. and my code is
  88. public void test2JsonResponse()
  89. {
  90. Response res=given()
  91. .contentType("ContentType.JSON")
  92. .when()
  93. .get("http://localhost:3000/Shop");
  94. /* Assert.assertEquals(res.getStatusCode(),200);
  95. Assert.assertEquals(res.getHeader("Content-Type"),"application/json; charset=utf-8");
  96. String bookname=res.jsonPath().get().toString();
  97. Assert.assertEquals(bookname, "veerabhadreshwara prasanna");*/
  98. //converting response to json object
  99. JSONObject jo=new JSONObject(res);
  100. String shopname = jo.get("veerabhadreshwara prasanna").toString();
  101. System.out.println(shopname);

字符串

展开查看全部

相关问题