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 に答える