android技巧:如何在android程式中執行adb shell命令

來源:互聯網
上載者:User
package net.gimite.nativeexe;        import java.io.BufferedReader;  import java.io.FileOutputStream;  import java.io.IOException;  import java.io.InputStream;  import java.io.InputStreamReader;  import java.net.HttpURLConnection;  import java.net.MalformedURLException;  import java.net.URL;        import net.gimite.nativeexe.R;  import android.app.Activity;  import android.os.Bundle;  import android.os.Handler;  import android.view.View;  import android.view.View.OnClickListener;  import android.widget.*;        public class MainActivity extends Activity {            private TextView outputView;      private Button localRunButton;      private EditText localPathEdit;      private Handler handler = new Handler();      private EditText urlEdit;      private Button remoteRunButton;            /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {          super.onCreate(savedInstanceState);          setContentView(R.layout.main);                outputView = (TextView)findViewById(R.id.outputView);          localPathEdit = (EditText)findViewById(R.id.localPathEdit);          localRunButton = (Button)findViewById(R.id.localRunButton);          localRunButton.setOnClickListener(onLocalRunButtonClick);                  }            private OnClickListener onLocalRunButtonClick = new OnClickListener() {          public void onClick(View v) {              String output = exec(localPathEdit.getText().toString());              output(output);  //            try {  //  //               // Process process = Runtime.getRuntime().exec(localPathEdit.getText().toString());  //  //            } catch (IOException e) {  //                // TODO Auto-generated catch block  //                e.printStackTrace();  //            }          }      };                  // Executes UNIX command.      private String exec(String command) {          try {              Process process = Runtime.getRuntime().exec(command);              BufferedReader reader = new BufferedReader(                      new InputStreamReader(process.getInputStream()));              int read;              char[] buffer = new char[4096];              StringBuffer output = new StringBuffer();              while ((read = reader.read(buffer)) > 0) {                  output.append(buffer, 0, read);              }              reader.close();              process.waitFor();              return output.toString();          } catch (IOException e) {              throw new RuntimeException(e);          } catch (InterruptedException e) {              throw new RuntimeException(e);          }      }            private void download(String urlStr, String localPath) {          try {              URL url = new URL(urlStr);              HttpURLConnection urlconn = (HttpURLConnection)url.openConnection();              urlconn.setRequestMethod("GET");              urlconn.setInstanceFollowRedirects(true);              urlconn.connect();              InputStream in = urlconn.getInputStream();              FileOutputStream out = new FileOutputStream(localPath);              int read;              byte[] buffer = new byte[4096];              while ((read = in.read(buffer)) > 0) {                  out.write(buffer, 0, read);              }              out.close();              in.close();              urlconn.disconnect();          } catch (MalformedURLException e) {              throw new RuntimeException(e);          } catch (IOException e) {              throw new RuntimeException(e);          }      }            private void output(final String str) {          Runnable proc = new Runnable() {              public void run() {                  outputView.setText(str);              }          };          handler.post(proc);      }        }

要加入許可權

查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

效果圖

源碼下載地址:http://download.csdn.net/detail/gshengod/6932845

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.