我正在用Java编写单元测试类,因为我想设置方法类型POST,但是它在调试时向我显示GET。以下是我正在尝试的代码段。感谢您的帮助。
HttpsURLConnection connection = null;
URL url = new URL("wsURL");
connection = (HttpsURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setInputMethod("POST");
答案 0 :(得分:0)
您正在使用连接。 setInputMethod (“ POST”);
但您应该已经使用了连接。 setRequestMethod (“ POST”);
将setInputMethod更改为setRequestMethod(“ POST”)后,它应该可以工作