您好,登錄后才能下訂單哦!
java啟動dos命令收集信息筆記一
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import org.testng.annotations.Test;
public class Person {
@Test //使用testng作為入口
public void doscmd() throws InterruptedException
{
System.out.println(System.getProperty("os name")); //判斷當前系統
Person p = new Person();
List<String> dL = p.excmd("adb devices"); //調用函數執行adb devices命令
System.out.println(dL.size());
for (String s:dL) { //通過增強for循環輸出內容。 s--定義變量,dl--為adb devices內容
System.out.println(s); //輸出顯示
}
}
public List<String> excmd(String cmdString) throws InterruptedException {
List<String> dosCMd = new ArrayList<String>(); //定義一個List集合
Process process = null; //定一個Process ID號
try {
process = Runtime.getRuntime().exec(cmdString); //通過內置函數啟動exec命令
InputStream in = process.getInputStream(); //通過輸出流輸出
BufferedReader inR = new java.io.BufferedReader(new InputStreamReader(in));
String line = null;
while((line = inR.readLine()) != null) //通過while遍歷命令行信息
{
dosCMd.add(line);
}
System.out.println("成功取出");
} catch (IOException e) {
System.out.println("數據不能獲取");
e.printStackTrace();
}
process.waitFor();
process.destroy();
return dosCMd;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。