私はアンドロイドが初めてです。私はプロジェクトを構築しました。
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で単一のファイルとして実行したい。
これどうやってするの?
とにかくありがとう