【问题标题】:Link a JSON file and a java file链接 JSON 文件和 java 文件
【发布时间】:2020-05-25 17:08:01
【问题描述】:

我最近开始编写一个 java 应用程序,只是我卡在 json 文件上。我关注了 Coding in Flow 的 youtube 视频。 https://www.youtube.com/watch?v=y2xtLqP8dSQ 所以我遵循了所有步骤,最后我有类似的文件,但最后没有结果。

Java 文件

package com.example.xxxxx;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class bookprofile extends AppCompatActivity {
    private TextView mTextViewResult;
    private RequestQueue mQueue;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.bookprofile);
        mTextViewResult = findViewById(R.id.text_view_result);
        Button buttonParse = findViewById(R.id.button_parse);
        mQueue = Volley.newRequestQueue(this);
        buttonParse.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                jsonParse();
            }
        });
    }
    private void jsonParse() {
        String url = "http://31.207.38.60/one.json";
        JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
                new Response.Listener<JSONObject>() {
                    @Override
                    public void onResponse(JSONObject response) {
                        try {
                            JSONArray jsonArray = response.getJSONArray("emmployees");
                            for (int i = 0; i < jsonArray.length(); i++) {
                                JSONObject employee = jsonArray.getJSONObject(i);
                                String firstName = employee.getString("firstname");
                                int age = employee.getInt("age");
                                String mail = employee.getString("mail");
                                mTextViewResult.append(firstName + ", " + String.valueOf(age) + ", " + mail + "\n\n");
                            }
                        } catch (JSONException e) {
                            e.printStackTrace();
                        }
                    }
                }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                error.printStackTrace();
            }
        });
        mQueue.add(request);
    }
}

我的 XML 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp"
    tools:context="com.example.xxxxx.bookprofile">
    <TextView
        android:id="@+id/text_view_result"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/black"
        android:textSize="20sp" />
    <Button
        android:id="@+id/button_parse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="29dp"
        android:text="parse" />
</RelativeLayout>

拜托,我已经考虑了 4 个小时。我要疯了。 xd

【问题讨论】:

  • JSONArray jsonArray = response.getJSONArray("employees");它不能解决问题,但你知道不是这样的

标签: java android json database


【解决方案1】:

使用此库获取 Array 或 Json 对象通常很困难。 为方便起见,最好将JsonObject作为字符串进行解析。

例如:

StringRequest stringRequest = new StringRequest(POST, url, new Response.Listener<String>() { @Override public void onResponse(String response) { if (!response.isEmpty()) { parseString(response); } } }....

另外,你文件的文本不是对象而是数组,所以应该作为数组接收:

        JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(POST, url, null, new Response.Listener<JSONArray>() {
        @Override
        public void onResponse(JSONArray response) {
            response.get(....)
        }
    })
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2019-08-31
    • 2014-05-28
    • 1970-01-01
    • 2014-10-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多