Java:将 TreeModel、TableModel 序列化为 JSON,反之亦然?

发布于 2024-11-17 02:29:21 字数 185 浏览 2 评论 0原文

在客户端,用户指定的输入创建唯一的 TreeModel 和 TableModel。

这需要序列化为 JSON 以便存储在 MongoDB 上(直接存储 JSON 文档)。

JSON 需要被解析回 TreeModel 或 TableModel,它们将在客户端软件上再次呈现。

任何库或现有代码可以促进这一点?

On the client side, a user specified input creates a unique TreeModel and TableModel.

This needs to be serialized to JSON for storage on MongoDB (stores JSON document directly).

The JSON needs to be parsed back into a TreeModel or TableModel which will be rendered again on the client side software.

Any library or existing codes which can faciliate this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

妞丶爷亲个 2024-11-24 02:29:21

TreeModel 和 TableModel 只是没有数据的接口,因此无法序列化。但是,当您谈论 TreeModel 实现(例如 DefaultTreeModel)时,您可以使用 Jackson POJO 数据绑定<将其序列化为 Json /a>

TreeModel and TableModel are just interfaces without data therefore they cant be serialized. However when you talk about TreeModel implementation e.g. DefaultTreeModel you can serialize it to Json using Jackson POJO data binding

花开雨落又逢春i 2024-11-24 02:29:21

Jackson 可以在 5 分钟内完成此操作

Jackson can do so in 5 minutes

郁金香雨 2024-11-24 02:29:21

您可以迭代模型的数据并使用 jackson 生成 json。即:

public static JsonNode getJsonNodeFromModel(DefaultTableModel model) {
    ArrayNode jsonArray = MAPPER.createArrayNode();

    for (int i = 0; i < model.getRowCount(); i++) {
        ObjectNode jsonNode = MAPPER.createObjectNode();

        String name = (String) model.getValueAt(i, 0);
        String command = ((String) model.getValueAt(i, 1)).replace("\\", "\\\\");

        jsonNode.put(model.getColumnName(0), name);
        jsonNode.put(model.getColumnName(1), command);

        jsonArray.add(jsonNode);
    }

    return jsonArray;
}

测试:

@Test
public void testMethod() {
    Object[] columnNames = new Object[]{"Name", "Shell Command"};
    Object[][] data = {
        {"Open jsonlint.com", "open http://jsonlint.com"},
        {"Open Escape/UnEscape Tool", "open http://www.freeformatter.com/javascript-escape.html"}
    };
    DefaultTableModel model = new DefaultTableModel(data, columnNames);

    JsonNode jsonNode = CommandHelper.getJsonNodeFromModel(model);

    assertEquals("Open jsonlint.com", jsonNode.get(0).get("Name").asText());
    assertEquals("open http://jsonlint.com", jsonNode.get(0).get("Shell Command").asText());
    assertEquals("Open Escape/UnEscape Tool", jsonNode.get(1).get("Name").asText());
    assertEquals("open http://www.freeformatter.com/javascript-escape.html", jsonNode.get(1).get("Shell Command").asText());
}

You can iterate through the model's data and use jackson to generate the json. I.e.:

public static JsonNode getJsonNodeFromModel(DefaultTableModel model) {
    ArrayNode jsonArray = MAPPER.createArrayNode();

    for (int i = 0; i < model.getRowCount(); i++) {
        ObjectNode jsonNode = MAPPER.createObjectNode();

        String name = (String) model.getValueAt(i, 0);
        String command = ((String) model.getValueAt(i, 1)).replace("\\", "\\\\");

        jsonNode.put(model.getColumnName(0), name);
        jsonNode.put(model.getColumnName(1), command);

        jsonArray.add(jsonNode);
    }

    return jsonArray;
}

Test:

@Test
public void testMethod() {
    Object[] columnNames = new Object[]{"Name", "Shell Command"};
    Object[][] data = {
        {"Open jsonlint.com", "open http://jsonlint.com"},
        {"Open Escape/UnEscape Tool", "open http://www.freeformatter.com/javascript-escape.html"}
    };
    DefaultTableModel model = new DefaultTableModel(data, columnNames);

    JsonNode jsonNode = CommandHelper.getJsonNodeFromModel(model);

    assertEquals("Open jsonlint.com", jsonNode.get(0).get("Name").asText());
    assertEquals("open http://jsonlint.com", jsonNode.get(0).get("Shell Command").asText());
    assertEquals("Open Escape/UnEscape Tool", jsonNode.get(1).get("Name").asText());
    assertEquals("open http://www.freeformatter.com/javascript-escape.html", jsonNode.get(1).get("Shell Command").asText());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文