我有一个包含2个位置的数组,每个位置包含一个“ ids_alunos”列表,第一个位置具有ids_alunos:“ 1,2,3”,第二个位置具有“ ids_alunos”,但是当我在其中添加ID时会发生什么我的数组是这个,第一个位置获取“ 1,2,3”值,第二个位置获取“ 1,2,3,4,5”。为什么会这样呢?

public ArrayList<CadastraEscolas> getFilhos(String mToken) throws Exception {

        String[] resposta = new WebService().get("filhos", mToken);


        if (resposta[0].equals("200")) {

            JSONObject mJSONObject = new JSONObject(resposta[1]);
            JSONArray dados = mJSONObject.getJSONArray("data");



            mArrayList = new ArrayList<CadastraEscolas>();
            mGPSList = new ArrayList<GPSEscolas>();


            for (int i = 0; i < dados.length(); i++) {


                JSONObject item = dados.getJSONObject(i).getJSONObject("escolas");
                JSONArray escolas = item.getJSONArray("data");

                for (int j = 0; j < escolas.length(); j++) {

                    JSONObject jItens = escolas.getJSONObject(j);
                    mCadastraEscolas = new CadastraEscolas();
                    mGPSEscolas = new GPSEscolas();

                    mCadastraEscolas.setId_escola(jItens.optInt("id_escola"));


                    mGPSEscolas.setId_escola(jItens.optInt("id_escola"));



                    JSONObject alunos = jItens.optJSONObject("alunos");

                    JSONArray data = alunos.getJSONArray("data");

                    if (data != null) {

                        ArrayList<Filhos> arrayalunos = new ArrayList<Filhos>();

                        for (int a = 0; a < data.length(); a++) {

                            mFilhos = new Filhos();

                            JSONObject clientes = data.getJSONObject(a);

                            mFilhos.setId_aluno(clientes.optInt("id_aluno"));



                            arrayalunos.add(mFilhos);

                            idsAlunos  += ";" + arrayalunos.get(a).getId_aluno().toString();

                            mGPSEscolas.setIds_alunos(idsAlunos);

                        }


                        mCadastraEscolas.setalunos(arrayalunos);

                    }



                    mArrayList.add(mCadastraEscolas);
                    mGPSList.add(mGPSEscolas);



                }
            }

            return mArrayList;

        } else {
            throw new Exception("[" + resposta[0] + "] ERRO: " + resposta[1]);
        }

    }

最佳答案

您可能想与idsAlunos同时初始化mGPSEscolas,因此在执行操作时:

mGPSEscolas = new GPSEscolas();


您也可以这样做:

idsAlunos = "";


否则,每个新的idsAlunos都会附加mGPSEscolas

09-16 09:40