개발중/Troubleshooting
java.lang.UnsupportedOperationException 해결
Binsoo
2022. 3. 1. 10:48
728x90
반응형
java.lang.UnsupportedOperationException 에러가 발생하는 이유는
List 를 생성하지 않고 사용해서 그런 것이다.
List<String> alscSendDateTypeList = Arrays.asList("4", "5");
List<String> alscSendDateTypeList = new ArrayList<>(Arrays.asList("4", "5"));
728x90
반응형