0

こんにちは、私は json 配列を使用してランダムに保存された 50 の質問があるクイズを開発しています。今私の問題は、ユーザーがプレイするたびにこれらの 50 の質問すべてが表示されることです。ランダムに選択されているため、50 の質問が保存されていますが、表示するのは 10 だけです..みんな助けてください..どうもありがとう!

public class Question1<JsonObject> extends Activity {



Intent menu = null;
BufferedReader bReader = null;
static JSONArray quesList = null;
static int index = 50;



/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.question10);

    Thread thread = new Thread() {
        public void run() {
            try {
                Thread.sleep(1 * 1000);
                finish();
                loadQuestions();
                Intent intent = new Intent(Question1.this,
                        Question2.class);
                Question1.this.startActivity(intent);
            } catch (Exception e) {
            }
        }
    };
    thread.start();

}

private void loadQuestions() throws Exception {
    try {



        List<JSONObject> question = new ArrayList<JSONObject>();
         int n = Math.min(10, quesList.length());
         for(int i = 0; i < n; i++) {
             JSONObject questions1 = quesList.getJSONObject(i);
             question.add(questions1);


        InputStream questions = this.getBaseContext().getResources()
                .openRawResource(R.raw.questions);
        bReader = new BufferedReader(new InputStreamReader(questions));
        StringBuilder quesString = new StringBuilder();
        String aJsonLine = null;
        while ((aJsonLine = bReader.readLine()) != null) {
            quesString.append(aJsonLine);
        }

        Log.d(this.getClass().toString(), quesString.toString());
        JSONObject quesObj = new JSONObject(quesString.toString());
        quesList = quesObj.getJSONArray("Questions");
        Log.d(this.getClass().getName(),
                "Num Questions " + quesList.length());
         }


    } catch (Exception e) {

    } finally {
        try {
            bReader.close();
        } catch (Exception e) {
            Log.e("", e.getMessage().toString(), e.getCause());
        }

    }

}

public static JSONArray getQuesList()throws JSONException{

      Random rnd = new Random();

        for (int i = quesList.length() - 1; i >= 0; i--)
        {
          int j = rnd.nextInt(i + 1);
          // Simple swap
          Object object = quesList.get(j);
          quesList.put(j, quesList.get(i));
          quesList.put(i, object);
        }
        return quesList;


}
4

1 に答える 1

0

このように言い換えてみてください:

List<JSONObject> question = null;

private void loadQuestions() throws Exception {
try {

    InputStream questions = this.getBaseContext().getResources()
            .openRawResource(R.raw.questions);
    bReader = new BufferedReader(new InputStreamReader(questions));
    StringBuilder quesString = new StringBuilder();
    String aJsonLine = null;
    while ((aJsonLine = bReader.readLine()) != null) {
        quesString.append(aJsonLine);
    }

    Log.d(this.getClass().toString(), quesString.toString());
    JSONObject quesObj = new JSONObject(quesString.toString());
    quesList = quesObj.getJSONArray("Questions");
    Log.d(this.getClass().getName(),
            "Num Questions " + quesList.length());
     }

    question = new ArrayList<JSONObject>();
     int n = Math.min(10, quesList.length());
     for(int i = 0; i < n; i++) {
         JSONObject questions1 = quesList.getJSONObject(i);
         question.add(questions1);

} catch (Exception e) {

} finally {
    try {
        bReader.close();
    } catch (Exception e) {
        Log.e("", e.getMessage().toString(), e.getCause());
    }

}

}

あなたのプログラムの名前付けが台無しになっているようです。List<JSONObject> question特定のコードはありませんが、代わりにを使用する必要があると思いますquesList

于 2013-02-22T11:07:58.533 に答える