无法与杰克逊合作
我想知道为什么没有一种确定的工作方式。我只想解析字符串:Jackson
JSON
ObjectMapper mapper = new ObjectMapper();
Customer[] myObjects = mapper.readValue(file, Customer[].class);
但我真的困惑了我应该导入什么来做到这一点。根据此链接,我尝试 导入 .但是我得到这个编译错误:mapper-asl.jar
The type org.codehaus.jackson.JsonParser cannot be resolved. It is indirectly referenced from required .class files
然后我尝试导入和.所以没有编译错误,但我得到了这个运行时异常(在映射器定义行中):jackson-core-2.4.2
jackson-databind-2.4.2
java.lang.NoClassDefFoundError: com.fasterxml.jackson.annotation.JsonAutoDetect
指导我请我应该导入什么才能使用。谢谢Jackson