我必须从服务器获取响应代码吗?
Must I Get The Response Code From The Server?
我有以下代码
URL url = new URL(pushURL);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/restService");
conn.setConnectTimeout(30000);
conn.setReadTimeout(30000);
if(conn.getResponseCode() == 200){
logger.debug("Success");
} else {
logger.debug("Time out set for 30 seconds");
}
String input = writer.getBuffer().toString();
OutputStream os = conn.getOutputStream();
如果我对服务器的响应不感兴趣,我可以去掉下面的代码吗?
if(conn.getResponseCode() == 200){
logger.debug("Success");
} else {
logger.debug("Time out set for 30 seconds");
}
考虑到整个代码会导致 java.net.ProtocolException
,有没有办法仍然获取服务器响应并执行 conn.getOutputStream();
?按什么顺序?除了明显的报告问题之外,没有得到答复的后果是什么?
问题是,一旦您获得响应代码,您就已经发送了 post。在您的代码中,您在获得响应之前不会向输出流写入任何内容。因此,您基本上没有通过 post 发送任何内容(只是那个 header 信息),获取响应代码,然后尝试再次写入它,这是不允许的。您需要做的是先写入输出流,然后像这样获取响应代码:
public static void main(String[] args) throws IOException {
URL url = new URL(pushURL);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/restService");
conn.setConnectTimeout(30000);
conn.setReadTimeout(30000);
String input = writer.getBuffer().toString();
OutputStream os = conn.getOutputStream();
for (char c : input.toCharArray()) {
os.write(c);
}
os.close();
if(conn.getResponseCode() == 200){
System.out.println("Success");
} else {
System.out.println("Time out set for 30 seconds");
}
}
这里有一个小教程:
我有以下代码
URL url = new URL(pushURL);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/restService");
conn.setConnectTimeout(30000);
conn.setReadTimeout(30000);
if(conn.getResponseCode() == 200){
logger.debug("Success");
} else {
logger.debug("Time out set for 30 seconds");
}
String input = writer.getBuffer().toString();
OutputStream os = conn.getOutputStream();
如果我对服务器的响应不感兴趣,我可以去掉下面的代码吗?
if(conn.getResponseCode() == 200){
logger.debug("Success");
} else {
logger.debug("Time out set for 30 seconds");
}
考虑到整个代码会导致 java.net.ProtocolException
,有没有办法仍然获取服务器响应并执行 conn.getOutputStream();
?按什么顺序?除了明显的报告问题之外,没有得到答复的后果是什么?
问题是,一旦您获得响应代码,您就已经发送了 post。在您的代码中,您在获得响应之前不会向输出流写入任何内容。因此,您基本上没有通过 post 发送任何内容(只是那个 header 信息),获取响应代码,然后尝试再次写入它,这是不允许的。您需要做的是先写入输出流,然后像这样获取响应代码:
public static void main(String[] args) throws IOException {
URL url = new URL(pushURL);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/restService");
conn.setConnectTimeout(30000);
conn.setReadTimeout(30000);
String input = writer.getBuffer().toString();
OutputStream os = conn.getOutputStream();
for (char c : input.toCharArray()) {
os.write(c);
}
os.close();
if(conn.getResponseCode() == 200){
System.out.println("Success");
} else {
System.out.println("Time out set for 30 seconds");
}
}
这里有一个小教程: