我是安卓新手。我已经建立了一个项目。
我有一个类来检查 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 中将它作为单个文件运行。
我怎样才能做到这一点?
无论如何谢谢