如何使用url在每个时间限制中ping服务器

时间:2011-04-09 04:55:09

标签: android

我有击中网址的代码,但是当我运行程序时它只打了一次我希望它每5分钟自动命中一次。检查状态如何做到....实际上我是android和java的新手,所以请用例子解释... v.v.提前致谢..... 公共课Activity2 {      public static String getData(){             String data = null;                       试试{

                  URL url = new URL("http://qrrency.com/mobile/j2me/cab/CabRequestStatus.php?requestid=666");
                                        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                    int m=0;
                    StringBuffer buffer=new StringBuffer();
                String str1 = " ";
                    while ((m=in.read())!=-1) 
                    {
                                buffer.append((char)m);
                                str1=str1+(char)m;
                                cabbookingapplication.resp =str1;
                                data=cabbookingapplication.resp;


                    }



                   in.close();



                    } catch (MalformedURLException e)
                    {
                    } catch (IOException e) 
                    {

                }
                return data;

1 个答案:

答案 0 :(得分:0)

你必须在每5分钟后使用一次计时器,它会击中你想要的和你的网址。会做你想做的事。