java string转json怎么实现

71次阅读
没有评论

共计 2087 个字符,预计需要花费 6 分钟才能阅读完成。

要将一个 Java String 对象转换为 JSON 格式,可以使用 JSON 库,如 Jackson 或 Gson。以下是使用 Jackson 库的示例代码:

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.core.JsonProcessingException;

public class Main {public static void main(String[] args) {ObjectMapper objectMapper = new ObjectMapper();
        String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";

        try {// 将 String 转换为 JSON 对象 
            Object json = objectMapper.readValue(jsonString, Object.class);

            // 将 JSON 对象转换为格式化的字符串 
            String formattedJson = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);
            System.out.println(formattedJson);
        } catch (JsonProcessingException e) {e.printStackTrace();
        }
    }
}

在上面的示例代码中,我们先创建了一个 ObjectMapper 对象。然后,使用 readValue() 方法将 String 对象转换为 JSON 对象。接下来,使用 writerWithDefaultPrettyPrinter() 方法将 JSON 对象转换为格式化的字符串,最后打印出来。

请注意,上述示例代码中的 JSON 字符串实际上是一个有效的 JSON 格式,如果你要将一个普通的字符串转换为 JSON 格式,你需要先构建一个 JSON 对象,然后将其转换为字符串。例如:

import com.fasterxml.jackson.databind.ObjectMapper;

public class Main {public static void main(String[] args) {ObjectMapper objectMapper = new ObjectMapper();
        String string = "Hello, world!";

        try {// 将普通字符串转换为 JSON 对象 
            Object json = objectMapper.writeValueAsString(string);

            // 将 JSON 对象转换为格式化的字符串 
            String formattedJson = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);
            System.out.println(formattedJson);
        } catch (JsonProcessingException e) {e.printStackTrace();
        }
    }
}

使用 Gson 库也可以实现相同的功能。以下是使用 Gson 库的示例代码:

import com.google.gson.Gson;

public class Main {public static void main(String[] args) {Gson gson = new Gson();
        String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";

        // 将 String 转换为 JSON 对象 
        Object json = gson.fromJson(jsonString, Object.class);

        // 将 JSON 对象转换为格式化的字符串 
        String formattedJson = gson.toJson(json);
        System.out.println(formattedJson);
    }
}

需要注意的是,以上示例代码中的 JSON 字符串必须是一个有效的 JSON 格式。如果你要将一个普通的字符串转换为 JSON 格式,你需要先构建一个 JSON 对象,然后将其转换为字符串。例如:

import com.google.gson.Gson;

public class Main {public static void main(String[] args) {Gson gson = new Gson();
        String string = "Hello, world!";

        // 将普通字符串转换为 JSON 对象 
        Object json = gson.toJsonTree(string);

        // 将 JSON 对象转换为格式化的字符串 
        String formattedJson = gson.toJson(json);
        System.out.println(formattedJson);
    }
}

无论是使用 Jackson 还是 Gson,都需要将相应的库添加到项目的依赖中。你可以在官方网站上找到这些库的下载和使用说明。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-12发表,共计2087字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)