mapper.readValue读取null

如下代码,这样写不会走catch方法,此方法不报ioExceptioin

 

 try {
            return mapper.readValue(json, new TypeReference<List<String>>() {});  
        } catch (IOException e) {
            // TODO ignore the exception
            e.printStackTrace();
            return null;
        }

 

捕获Exception即可

你可能感兴趣的:(mapper)