0
我是android新手。我已經建立了一個項目。我該如何運行一個文件類來測試我的android項目?
我有檢查類如果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中單個文件。
我怎樣才能做到這一點?
感謝反正
公共靜態無效的主要(字串[] args)拋出IOException異常 \t { \t \t布爾校驗= checkServer(); \t \t如果(檢查) \t \t { \t \t \t的System.out.println( 「清叢」); \t \t} \t}但當我運行時,它顯示消息「aunching遇到問題無法連接到VM」我怎麼能解決這個問題? –