2012-10-03 68 views
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中單個文件。

我怎樣才能做到這一點?

感謝反正

+0

公共靜態無效的主要(字串[] args)拋出IOException異常 \t { \t \t布爾校驗= checkServer(); \t \t如果(檢查) \t \t { \t \t \t的System.out.println( 「清叢」); \t \t} \t}但當我運行時,它顯示消息「aunching遇到問題無法連接到VM」我怎麼能解決這個問題? –

回答

1

你可以寫一個JUnit類或以簡單的方式,在同一個班級,並在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"); 
    } 

} 
相關問題