我在一個代號爲一個項目得到一個編譯錯誤,我在StateMachine.java類代碼調用一個方法,運行時間:從內部代號一個
error: cannot find symbol
getRuntime().
symbol: method exec(String)
location: class Runtime
的發言全文;
try {
Runtime.getRuntime().exec("cmd.exe /c start dir ");
} catch (IOException e) {
System.out.println("Print this");
}
並且在普通Java項目中運行良好。
我在想什麼?
// ============================================ ===
地址:..和以
try {
Process p = Runtime.getRuntime().exec("cmd /c dir A*");
} catch (IOException e) {
System.out.println("Print this");
}
我也得到一個編譯器錯誤說
error: cannot find symbol
Process
symbol: class Process
location: class StateMachine
似乎阻止了OS /後端reach--但如何,背後的「心態」是什麼?
你在Eclipse上開發了代號一個插件?它似乎沒有爲編譯器提供JDK庫。 –