如何在JSON中解析JSON

时间:2016-04-30 14:00:44

标签: java android json

我正在为医疗应用程序创建一个mcq,并且我试图从我的数据库中获得一些问题,并使用此JSON进行不同的选择:

@extends('layouts.master')

@section('title', 'Create Questionnaire | SurveySays!')

@section('content')
    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
        <h1>Create Questionnaire</h1>
        <h3>Create your questionnaire using the form below. Give it a title, a small description and write your ethical considerations:</h3>

        @if($errors->any())
            <div class="alert alert-danger">
                @foreach($errors->all() as $error)
                    <p>{{ $error }}</p>
                @endforeach
            </div>
        @endif

        {!! Form::open(array('url' => '/questionnaires/create')) !!}

        <div class="container-fluid">
            <div class="form-group">
                {!! Form::label('title', 'Title:') !!}
                {!! Form::text('title',null,['id' => 'title','class' => 'form-control']) !!}
            </div>
            <div class="form-group">
                {!! Form::label('description', 'Description:') !!}
                {!! Form::textarea('description',null,['class' => 'form-control']) !!}
            </div>
            <div class="form-group">
                {!! Form::label('ethics', 'Ethical considerations:') !!}
                {!! Form::textarea('ethics',null,['class' => 'form-control']) !!}
            </div>
            <div class="form-group">
                {!! Form::submit('Create', array('class' => 'btn btn-success form-control')) !!}
            </div>
        </div>
    </div>

    {!! Form::close() !!}
@endsection

然后我将我的问题字符串传递给textview,如果我有2个选择,我只创建2个按钮,但只创建了1个按钮,在我的按钮中我有这个字符串:

{
    "QCM": [{
        "question": "Est-ce que Guillaume a pris?",
        "id": "34",
        "choix": ["Oui", "Non"]
    }]
}

所以我不明白,因为我为它创建了第二个JSONArray循环......

这是我的Java

["Oui", "Non"]

如果有人能解释我该怎么做,我想学习!无法找到此类请求的任何例子。 谢谢大家!

1 个答案:

答案 0 :(得分:2)

你使用错误的解析器,改变它:

JSONArray QCM = response.getJSONArray("QCM");
    for (int i = 0; i < QCM.length(); i++) {
        JSONObject getQcmObject = QCM.getJSONObject(i);
        String questionGet = getQcmObject.getString("question");
        symptomesQuestions.setText(questionGet);
        JSONArray choiceGet = getChoixObject.getJSONArray("choix");
        lesChoixButton1.setText(choiceGet.getString(0));
        lesChoixButton2.setText(choiceGet.getString(1));
    }

使用此站点从您的json:http://www.jsonschema2pojo.org/

创建java pojo模型