conn = (HttpURLConnection) connectURL.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");
conn.connect();
int code = conn.getResponseCode();
我已成功建立连接。我正在尝试通过互联网传递信息。当通过浏览器打开 url 时,我得到的响应为
{"status":"0","responseCode":"1001","response":"Wrong Settings."}
对于正确的状态返回为 1。
有没有什么方法可以让我只获得状态。我一直在尝试以下方法,但每次我通过浏览器手动验证时将代码(下面是代码片段)作为-1而不考虑状态代码