0

当有参数要发布时,我们会做类似的事情

JSONObject postParams = new JSONObject("{ \"ccc\": \"20000\", \"abc\": \"21000\""}");

DataOutputStream wr = new DataOutputStream(conn.getOutputStream());
            wr.writeBytes(postParams.toString());
            wr.flush();
            wr.close();
            int responseCode = conn.getResponseCode();
            System.out.println("\nSending 'POST' request to URL : " + url);
            System.out.println("Post parameters : " + postParams);
            System.out.println("Response Code : " + responseCode);

如果没有任何参数怎么办,我试着做

JSONObject postParams = new JSONObject("{}");

它失败了。但唯一 ID 包含在链接中

https://domain.com/ut/game/game/trade/ {UNIQUE ID HERE} /bid

我相信有些东西我错过了。

4

1 回答 1

1

如果没有参数,则不要写入任何内容conn.getOutputStream()

我不知道你的终点是什么,但很可能是这种情况。

于 2013-10-16T19:27:57.380 回答