在一项活动中,我编写了可以正常工作的代码。
但是现在我使用以下代码向此活动添加了一个方法:
private void obtenerDatosReuniones(){
try {
int j=0;
String aux = jsonReuniones.getString("nombres");
String aux2 = null;
aux2 = aux.replace("[", "");
aux2= aux2.replace("]", "");
String [] campos = aux2.split(",");
while(j<campos.length){
nombres_reuniones.add(campos[j]);
}
nomres_reunones 的类型是 ArrayList
当我运行应用程序时,在 nombres_reuniones.add (campos [j]) 行出现以下错误:
我究竟做错了什么?
谢谢!