0

我正在使用 Jackson 的对象映射器将 Json 文件映射到一组嵌套的 Java bean。嵌套 bean 及其 String、Integer 和 Enum 对象根据我在 Json 中定义的内容正确设置。

一些字符串表示文件路径,最好让 jackon 对象映射器直接将文件路径字符串映射到 Java 文件对象。

这可能吗?

4

1 回答 1

2

我认为,默认情况下它是这样工作的。请看我的例子:

import java.io.File;
import java.io.IOException;

import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.ObjectMapper;

public class JacksonProgram {

    public static void main(String[] args) throws IOException {
        ObjectMapper objectMapper = new ObjectMapper();
        JsonFactory jsonFactory = new JsonFactory();
        JsonParser parser = jsonFactory.createJsonParser("{\"id\":\"1S200D\", \"path\":\"/tmp/test/file.txt\"}");
        Entity employee = objectMapper.readValue(parser, Entity.class);
        System.out.println(employee);
    }
}

class Entity {

    private String id;
    private File path;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public File getPath() {
        return path;
    }

    public void setPath(File path) {
        this.path = path;
    }

    @Override
    public String toString() {
        return "Entity [id=" + id + ", path=" + path + "]";
    }
}

如您所见,我只是将 property 声明为File.

于 2013-05-09T13:03:20.930 回答