【问题标题】:Android null object reference on JsonArray.toString() using ion-koush使用 ion-koush 对 JsonArray.toString() 的 Android 空对象引用
【发布时间】:2018-01-20 08:52:33
【问题描述】:

我正在开发一个网站和安卓应用程序。我正在使用koush/ion 库我现在正在努力解决这个问题,其中 json 为空,我已经用

确认了这一点

System.out.print(结果);

我目前正在测试这段代码,以了解 jsonobject 和 jsonarray 如何在 android 中工作。我是json的初学者。我还试图将 jsonarray 插入到我的表格视图中

这是安卓活动

public class TestActivity extends AppCompatActivity {

TableLayout usertabletest;
static JSONArray arr = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.test);

    usertabletest = (TableLayout) findViewById(R.id.usertabletest);

    View tablehead = LayoutInflater.from(this).inflate(R.layout.testlol, null, false);
    TextView idhead = (TextView) tablehead.findViewById(R.id.idtest);
    TextView useridhead = (TextView) tablehead.findViewById(R.id.useridtest);
    TextView passwordhead = (TextView) tablehead.findViewById(R.id.passwordtest);
    TextView rolehead = (TextView) tablehead.findViewById(R.id.roletest);

    idhead.setText("id");
    useridhead.setText("userid");
    passwordhead.setText("password");
    rolehead.setText("role");

    usertabletest.addView(tablehead);

    Ion.with(this)
            .load("http://267.site11.com/doubletime-app/sql.php")
            .asJsonArray()
            .setCallback(new FutureCallback<JsonArray>() {
                @Override
                public void onCompleted(Exception e, JsonArray result) {
                    try {
                        JSONArray arr = new JSONObject(result.toString()).getJSONArray("posts");
                        // get the 'posts' section from the JSON string
                        for (int i = 0; i < arr.length(); i++) {
                            JSONObject post = arr.getJSONObject(i).getJSONObject("post");
                            String id = post.getString("id");
                            String userid = post.getString("userid");
                            String password = post.getString("password");
                            String role = post.getString("role");

                            buildtable(id, userid, password, role);
                        }
                    } catch (JSONException E) {
                        E.printStackTrace();
                    }
                }
            });
}

这是我的 sql.php

<?php
    include 'JSON.php';
    $query = "SELECT * FROM user_accounts";
    encodequery($query);
?>

这是 JSON.php

<?php
function encodequery($query) {
$dbhost = "localhost";
$dbuser = "id1341573_267admin";
$db = "id1341573_rotc";
$dbpass = "iloveyou267";

$conn = new mysqli($dbhost, $dbuser, $dbpass,$db) or die("Connect failed: %s\n". $conn -> error);

$result = mysqli_query($conn, $query) or die(mysqli_error($conn));

$posts = array();

if(mysqli_fetch_array($result)) {
  while($post = mysqli_fetch_assoc($result)) {
     $posts[] = array('post'=>$post);
     }
   }
encodearray($posts);
}

function encodearray($posts) {
header('Content-type: application/json');
echo json_encode(array('posts'=>$posts));
}

?>

【问题讨论】:

  • 请检查我下面的答案。

标签: php android null invoke android-ion


【解决方案1】:

试试这个

[和{的区别——(方括号和大括号)

如果你的 JSON 节点以 [ 开头,那么我们应该使用 getJSONArray() 方法。就像节点以 { 开头一样,那么我们应该使用 getJSONObject() 方法。

Ion.with(context)
            .load(url)
            .asJsonObject()
            .setCallback(new FutureCallback<JsonObject>() {
                @Override
                public void onCompleted(Exception e, JsonObject result) {
                    // TODO
                   try 
                   {
                      JSONArray arr  = result.getJSONArray("posts");

                      for (int i = 0; i < arr.length(); i++)
                      {
                         JSONObject post = arr.getJSONObject(i).getJSONObject("post");
                         String id = post.getString("id");
                         String userid = post.getString("userid");
                         String password = post.getString("password");
                         String role = post.getString("role");
                         String syncsts = post.getString("syncsts");

                         Log.i("ID "," "+id);
                         Log.i("User id "," "+userid);
                         Log.i("Password "," "+password);
                         Log.i("Role "," "+role);
                         Log.i("Syncsts "," "+syncsts);

                         buildtable(id, userid, password, role);
                     }
                } catch (JSONException E) {
                    E.printStackTrace();
                }
                }
            });

【讨论】:

  • 谢谢,但是你看到json回复了[267.site11.com/doubletime-app/sql.php]?我对它的结构以及如何访问它感到非常困惑我也尝试了上面的代码,我得到“无法解析方法.getJSONArray
  • 以上json响应链接显示错误404。
  • 谢谢我的朋友,我已经解决了。你已经指出了括号之间的区别,这是我改变的JSONArray arr = new JSONObject(result.toString()).getJSONArray("posts");
  • @RaymondManauis 欢迎您,很高兴为您提供帮助。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-02-28
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2021-10-12
相关资源
最近更新 更多