gpt4 book ai didi

json - 使用 BlackBerry 的 HttpConnection POST 发送 JSONObject

转载 作者:行者123 更新时间:2023-12-05 01:14:36 25 4
gpt4 key购买 nike

我正在尝试做一个可以通过 HttpConnection POST 请求发送 JSONObject 的黑莓应用程序。 JSONObject 是

{ 
"Contrasena" : "hy1tSPQc3K4IlSZLvd7U7g==",
"Plataforma" : "A",
"Usuario" : "user2323"
}

有人知道吗?

最佳答案

您可以使用 URLEncodedPostData为此上课。像这样使用

  httpConn.setRequestMethod(HttpConnection.POST);

httpConn.setRequestProperty("Content-Type", "application/json");

URLEncodedPostData encPostData = new URLEncodedPostData("UTF-8", false);

encPostData.setData(JsonString);//set your jsonstring

byte[] postData = encPostData.toString().getBytes("UTF-8");

httpConn.setRequestProperty("Content-Length", String.valueOf(postData.length));

httpConn.openOutputStream().write(encPostData.getBytes());

int Response = httpConn.getResponseCode();

关于json - 使用 BlackBerry 的 HttpConnection POST 发送 JSONObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11705871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com