3

所以我创建了一个向网站发送请求的小方法,我想确保它不会崩溃。当我断开互联网并调用该方法时,我得到一个java.net.UnknownHostException:,但我无法捕捉到它。我究竟做错了什么?

给出问题 atm 的行是HttpResponse response = httpclient.execute(httppost);

我什至在 IO 之前处理 ClientProtocolException(IO 的子类),所以我可以同时拥有两个 catch 块。我也尝试过throws clauses为 high level添加Exception e。这是我的代码:

public String connect(String username, String password) {
    String answer = "Could not connect to server, please check your internet connect or try later.";
    try {
        DefaultHttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost(baseurl);
        // Request parameters and other properties.
        List<NameValuePair> params = new ArrayList<NameValuePair>(2);
        params.add(new BasicNameValuePair("usernameUS", username));
        params.add(new BasicNameValuePair("passwordUS", password));
        httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));

        // Execute and get the response.
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();

        if (entity != null) {
            answer = EntityUtils.toString(entity, charset);
            try {
                if (answer.equals("Authenticated")) {
                    this.password = password;
                    this.username = username;
                    Authenticated = true;
                    return answer;
                } else {
                    return answer;
                }
            } finally {
            }
        }
        return "Could not connect to server, please try later.";
    } catch (ClientProtocolException ex) {
        Logger.getLogger(Connection.class.getName()).log(Level.SEVERE,
                null, ex);
        return answer;
    } catch (IOException ex) {
        Logger.getLogger(Connection.class.getName()).log(Level.SEVERE,
                null, ex);
        return answer;
    }
}

还有一个例外:

java.net.UnknownHostException: www.example.com
    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:866)
    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1258)
    at java.net.InetAddress.getAllByName0(InetAddress.java:1211)
    at java.net.InetAddress.getAllByName(InetAddress.java:1127)
    at java.net.InetAddress.getAllByName(InetAddress.java:1063)
    at org.apache.http.impl.conn.SystemDefaultDnsResolver.resolve(SystemDefaultDnsResolver.java:45)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.resolveHostname(DefaultClientConnectionOperator.java:278)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:162)
    at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:294)
    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:640)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:479)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
    at usclient.Connection.connect(Connection.java:65)

工作代码:

public class Connection {
private static Connection conn;
String username, fileURL;
String baseurl = "http://www.example.com";
String content, password = "";
String charset = "UTF-8";
HttpURLConnection request;
URL url;
OutputStreamWriter post;
BufferedReader in;

private Connection()    {
}

public static Connection getInstance()  {
    if(conn==null)  {
        conn = new Connection();
    }
    return conn;
}

public String connect(String username, String password){
    String answer = "Could not connect to server, please check your internet connect or try later.";
    try {
        DefaultHttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost(baseurl);
        // Request parameters and other properties.
        List<NameValuePair> params = new ArrayList<NameValuePair>(2);
        params.add(new BasicNameValuePair("usernameUS", username));
        params.add(new BasicNameValuePair("passwordUS", password));
        httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));

        //Execute and get the response.
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();
        if (entity != null) {
            String[] data = EntityUtils.toString(entity, charset).split("\\n");
            answer = data[0];
            try {
                if(answer.contentEquals("Authenticated")) {
                    this.password = password;
                    this.username = username;
                    if(data.length<1)
                        fileURL = data[1];
                    return data[0];
                }
                else {
                    return answer;
                }
            } finally {
            }
        }
        return "Could not connect to server, please try later.";
    } catch (ClientProtocolException ex) {
        Logger.getLogger(Connection.class.getName()).log(Level.SEVERE, "Exception caught:", ex);
        return empty;
    } catch (IOException ex) {
        Logger.getLogger(Connection.class.getName()).log(Level.SEVERE, "Exception caught:", ex);
        return empty;
    } 
}
4

1 回答 1

0

我敢肯定,这个问题应该被关闭。为什么?

我刚刚检查了您提供的有问题的来源。

您的最后一个版本的课程Connection甚至不想编译。Java 向声明抱怨return empty;。这个变量是什么empty

好的,即使更改return empty;return answer;(例如) - 一切正常。

例如,如果我尝试连接到http://www.fdsfsaddsfsddsafasd.com,则在最后一条语句java.net.UnknownHostException中成功捕获。...catch(IOException ...

我建议您完全重建您的项目,在调试模式下运行它并再次进行测试。

于 2013-01-29T11:10:54.753 回答