1
“ ps -ef | grep java” โดยใช้โปรแกรม java [ปิด]
ฉันพยายามรันps -ef | grep javaผ่านโปรแกรมจาวา นี่คือรหัสของฉัน - // String sudoScript = "sh -c \"ps -ef | grep java\""; String sudoScript = "ps -ef | grep java"; try { System.out.println("command=" + sudoScript); Process p1 = Runtime.getRuntime().exec(sudoScript); System.out.println("exit code: "+p1.waitFor()); FileInputStream fis1 = (FileInputStream) p1.getErrorStream(); int content1; while ((content1 = fis1.read()) != …