当Twitter API出现“HTTP错误500内部服务器”错误时如何处理URL连接异常。如何处理它.i已经在核心java类中编码了这段代码并为Twitter API调用创建了一个包
import java.net.*;
import java.io.*;
public class getTwitterData {
public static URLConnection connection;
public static void main(String[] args) {
try {
System.out.println("Hello World!"); // Display the string.
try {
URLConnection connection = new URL("Twitter API call ").openConnection();
InputStream response = connection.getInputStream();
System.out.println(response);
}
}catch(IOException ex) {}
}
}
答案 0 :(得分:0)
响应将具有http响应代码,并且如果需要,可以以不同方式处理每个响应代码。