您好,登錄后才能下訂單哦!
java啟動(dòng)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")); //判斷當(dāng)前系統(tǒng)
Person p = new Person();
List<String> dL = p.excmd("adb devices"); //調(diào)用函數(shù)執(zhí)行adb devices命令
System.out.println(dL.size());
for (String s:dL) { //通過增強(qiáng)for循環(huán)輸出內(nèi)容。 s--定義變量,dl--為adb devices內(nèi)容
System.out.println(s); //輸出顯示
}
}
public List<String> excmd(String cmdString) throws InterruptedException {
List<String> dosCMd = new ArrayList<String>(); //定義一個(gè)List集合
Process process = null; //定一個(gè)Process ID號(hào)
try {
process = Runtime.getRuntime().exec(cmdString); //通過內(nèi)置函數(shù)啟動(dòng)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("數(shù)據(jù)不能獲取");
e.printStackTrace();
}
process.waitFor();
process.destroy();
return dosCMd;
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。