0

我是安卓新手。我已经建立了一个项目。

我有一个类来检查 url 是否存在,如下所示:

public class connect {
Boolean checkServer() throws IOException
{
    Boolean check = false;
    HttpURLConnection connection = null;
    try {
        URL url = new URL("www.google.com");
        connection = (HttpURLConnection) url.openConnection();
        connection.connect();
        connection.getInputStream();
                    // do something with the input stream here
        check = true;
    } catch (MalformedURLException e1) {
        e1.printStackTrace();
        check = false;
    }
    finally {
        if(null != connection) { connection.disconnect(); }
    }
    return check;
}

}

我想在 Eclipse 中将它作为单个文件运行。

我怎样才能做到这一点?

无论如何谢谢

4

1 回答 1

1

您可以编写一个 Junit 类,或者以一种简单的方式,使用 public static void main() 方法编写一个新类,或者在同一个类和 main() 方法中创建一个类的对象并启动 main()方法

public class ConnectDemo {

    /**
     * @param args
     */
    public static void main(String[] args) {

        Connect c = new Connect();

        if(c.checkServer())
            System.out.println("Check Server Successful");
        else 
            System.out.println("Check Server not Successful");
    }

}
于 2012-10-03T08:41:29.143 回答