如何在android studio中用POST方法获取JSON数据的秘籍代码

问题描述 投票:0回答:2

我需要用POST方法获取基于Secret CODE的json数据响应,请你解决我的问题,先谢谢你。

我一直面临着很多问题,用这种POST方法的Secret Code来获取JSON响应。

 public class MainActivity extends AppCompatActivity {
ListView listView;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    listView = (ListView) findViewById(R.id.listViewHeroes);


    getQuestions();
}

private void getQuestions() {
    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(ApiInterface.BASE_URL)
            .addConverterFactory(GsonConverterFactory.create()) //Here we are using the GsonConverterFactory to directly convert json data to object
            .build();

    ApiInterface api = retrofit.create(ApiInterface.class);

    RequestModel requestModel = new RequestModel();
    requestModel.setSecretCode("341977082");

    Call<List<ModelObjects>> call = api.getQuestions();

   call.enqueue(new Callback<List<ModelObjects>>() {
       @Override
       public void onResponse(Call<List<ModelObjects>> call, Response<List<ModelObjects>> response) {
           List<ModelObjects> questionsList = response.body();


           String[] questions = new String[questionsList.size()];


           for (int i = 0; i < questionsList.size(); i++) {
               questions[i] = questionsList.get(i).getQues_No();
           }



           listView.setAdapter(new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_list_item_1, questions));
       }

       @Override
       public void onFailure(Call<List<ModelObjects>> call, Throwable t) {
           Toast.makeText(getApplicationContext(), t.getMessage(), Toast.LENGTH_SHORT).show();
       }
   });}}

这里是接口,我在这里传递包含父级和分机的URL。

public interface ApiInterface {

String BASE_URL = "";

@POST("QuestionsList")
Call<List<ModelObjects>> getQuestions();}

以下是回应模型

 public class ModelObjects {
@SerializedName("Ques_No")
private String Ques_No;

public ModelObjects(String ques_No) {
    Ques_No = ques_No;
}

public String getQues_No() {
    return Ques_No;
}

public void setQues_No(String ques_No) {
    Ques_No = ques_No;
}}

以下是请求模型

 public class RequestModel {
private String SecretCode;

public RequestModel(String secretCode) {
    SecretCode = secretCode;
}

public RequestModel() {

}

public String getSecretCode() {
    return SecretCode;
}

public void setSecretCode(String secretCode) {
    SecretCode = secretCode;
}}
java android json post retrofit
2个回答
1
投票

这里你已经定义了 RequestModel 但你并没有把它传递给api调用。Post请求应该有body。所以要指定 @Body 同时定义api调用,如下图所示。

@POST("QuestionsList")
Call<List<ModelObjects>> getQuestions(@Body RequestModel model);

然后在调用 getQuestion() 通过模型。

RequestModel requestModel = new RequestModel();
requestModel.setSecretCode("341977082");
Call<List<ModelObjects>> call = api.getQuestions(requestModel);

更新:更新你的 ModelObject 如下图。

public class ModelObjects {
@SerializedName("Ques_No")
String Ques_No;
@SerializedName("Question")
String Ques;
@SerializedName("Answer")
String answer;
//same for other params as well
}

1
投票

我看到的是,你正在创建RequestModel类的对象,但你没有在任何地方传递它。如果你想把secretCode和post network调用一起发送,那么你就必须把这个requestModel实例传递给调用。

    public interface ApiInterface {
    String BASE_URL = "";
    @POST("QuestionsList")
    Call<List<ModelObjects>> getQuestions(@Body RequestModel requestModel);
    }

然后你可以调用这个方法,并且可以通过以下方式传递这个requestModel对象

    Call<List<ModelObjects>> call = api.getQuestions(requestModel);

如果你想访问第一个对象,你可以通过以下方式来实现

   List<ModelObjects> questionsList = response.body();
   ModelObject obj = questionList.get(0);
   String question = obj.getQues_No();

这个问题要做第一题。

© www.soinside.com 2019 - 2024. All rights reserved.