java.lang.ClassCastException: class com.alibaba.fastjson.JSONArray cannot be cast to class java.util.ArrayList (com.alibaba.fastjson.JSONArray is in unnamed module of loader 'app'; java.util.ArrayList is in module java.base of loader 'bootstrap')
时间: 2024-04-03 16:37:23 浏览: 185
常见java异常.txt
这个错误通常是因为你试图将一个FastJSON中的JSONArray对象强制转换为Java标准库中的ArrayList对象,但这两种对象并不兼容。你需要使用FastJSON提供的API将JSONArray转换为ArrayList,或者直接使用FastJSON中的JSONArray对象进行操作。可以参考FastJSON的官方文档来了解更多信息。
阅读全文