What does error: ArrayList cannot be resolved to a type
mean in dr java?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You probably need to add the line
To your source file. Post the code to be sure.
It usually means you have forgotten to import the class. Near the top of you java file, put
import java.util.ArrayList;