android程式中使用命令列及獲得命令列執行後的內容

來源:互聯網
上載者:User

[html]
在開發android項目中,需要在程式中使用命令列執行,獲得命令列執行後的結果並做處理。 

在開發android項目中,需要在程式中使用命令列執行,獲得命令列執行後的結果並做處理。[html]
下面是自己寫的一個小例子,供以後參考使用: 

下面是自己寫的一個小例子,供以後參考使用:[html] view plaincopyprint?<PRE class=html name="code">    public String android_command(){ 
        //要執行的命令列 
        String ret = "cat /mnt/sdcard/readme.txt"; 
        String con =""; 
        String result =""; 
        Process p; 
        try { 
            p = Runtime.getRuntime().exec(ret); 
            BufferedReader br=new BufferedReader(new InputStreamReader(p.getInputStream())); 
            while((result=br.readLine())!=null) 
            { 
                con+=result; 
            } 
        } catch (IOException e) { 
            // TODO Auto-generated catch block 
            e.printStackTrace(); 
        } 
        //可以打出命令執行的結果 
        System.out.println("==========================con:"+con); 
        ret = do_command(con); 
        System.out.println("==========================ret:"+ret); 
        return ret; 
    } 
     
    //對結果進行處理,得到自己想要的資料 
    public String do_command(String cmd){ 
        String ret = ""; 
        //根據自己的需求,制定Regex 
        String match = "\\d+"; 
        Pattern p = Pattern.compile(match); 
        Matcher m = p.matcher(cmd);  
        if(m.find()){ 
            String arr = m.group(0); 
            String cmd2 = m.replaceFirst("@"); 
            ret = arr +"@"+do_command(cmd2); 
        } 
        return ret; 
    } 
</PRE>關於javaRegex的使用: 
<PRE></PRE> 
<PRE style="BACKGROUND-COLOR: rgb(255,255,255)" class=html name="code">http://blog.csdn.net/mad1989/article/details/7773749</PRE><PRE style="BACKGROUND-COLOR: rgb(255,255,255)" class=html name="code">http://folksy.iteye.com/blog/1002076</PRE><PRE style="BACKGROUND-COLOR: rgb(255,255,255)" class=html name="code"> 
</PRE> 
<PRE style="BACKGROUND-COLOR: rgb(255,255,255)" class=html name="code"></PRE> 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.