Domande taggate «unsupportedoperation»

7
Java List.add () UnsupportedOperationException
Provo ad aggiungere oggetti a List<String>un'istanza ma genera un UnsupportedOperationException. Qualcuno sa perché? Il mio codice Java: String[] membersArray = request.getParameterValues('members'); List<String> membersList = Arrays.asList(membersArray); for (String member : membersList) { Person person = Dao.findByName(member); List<String> seeAlso; seeAlso = person.getSeeAlso(); if (!seeAlso.contains(groupDn)){ seeAlso.add(groupDn); person.setSeeAlso(seeAlso); } } Il messaggio di errore: …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.