这是我试图添加的Jackson数据绑定工件
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.1</version>
</dependency>
将Jacksondatabind工件添加到pom.xml中,在pom.xml文件中创建错误,因此,我无法导入ObjectMapper。
下面是我写的代码wt i hv从json文件导入数据
public List<HashMap<String, String>> getJsonData(String JsonFilePath)
{
String JsonContent=FileUtils.readFileToString(new File(System.getProperty("user.dir")+"\\src\\test\\java\\org\\mobileRecharge\\testData\\Requirements.json"),StandardCharsets.UTF_8);
ObjectMapper mapper = new ObjectMapper();
List<HashMap<String, String>> data=mapper.readValue(JsonContent,
new TypeReference<List<HashMap<String, String>>>(){
});
return data;
}
1条答案
按热度按时间eyh26e7m1#
这是我试图添加的Jackson数据绑定工件