创建 JSON 对象并将其转换为 Java 中的 String

发布于 2024-11-01 08:34:15 字数 634 浏览 0 评论 0原文

我需要通过 http post 发送一个相当长的 JSON 标头。在Python中是这样的:

    self.body_header = {
                "client": self.client_name,
                "clientRevision": self.client_version,
                "uuid": str(uuid.uuid4()),
                "session": self.get_sessionid()}

    self.body = {
                "header": self.body_header,
                "country": {"IPR":"1021", "ID":"223", "CC1":"0", "CC2":"0", "CC3":"0", "CC4":"2147483648"},
                "privacy": 1}

我需要在Java中做类似的事情,即以某种方式创建一个JSON结构,将其转换为字符串并通过http发送。

问题是,我怎样才能轻松实现这一目标?有什么有用的库吗?我知道如何发送它,但不知道如何构建它然后创建一个字符串。

谢谢大家。

I need to send a quite long JSON header through an http post. In Python was like this:

    self.body_header = {
                "client": self.client_name,
                "clientRevision": self.client_version,
                "uuid": str(uuid.uuid4()),
                "session": self.get_sessionid()}

    self.body = {
                "header": self.body_header,
                "country": {"IPR":"1021", "ID":"223", "CC1":"0", "CC2":"0", "CC3":"0", "CC4":"2147483648"},
                "privacy": 1}

I need to do something similar in Java, ie, create somehow a JSON struct, convert it to a String and send it via http.

The question is, how can I achieve that easily? Any useful libraries? I know how to send it, but not how to build it and then create a String.

Thank you all.

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

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

发布评论

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

评论(3

打小就很酷 2024-11-08 08:34:15

您可以使用 gson

您可以创建一个 Java 对象 (POJO) 并将其序列化为 JSON,方法是:

Gson gson = new Gson();
String json = gson.toJson(yourObject);

然后您可以通过 HTTP 发送该字符串。

如果您不想走 POJO 路线,您仍然可以使用 JsonElement, JsonArray, JsonObject 在格森API。

You can use gson.

You can create a Java Object (POJO) and serialize it as JSON by doing:

Gson gson = new Gson();
String json = gson.toJson(yourObject);

You can then send the string over HTTP.

If you do not want to go the POJO route, you can still create the JSON struct using JsonElement, JsonArray, JsonObject in the Gson API.

月亮坠入山谷 2024-11-08 08:34:15

我喜欢原来的 org.json

I like the original org.json

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文