下面的这段代码为啥不能正确的执行你。。在cmd里可以执行;为啥代码里就不可以了呢;高手求救啦
public class te { public static void main(String[] args) {

try {
Runtime.getRuntime().exec("del /f e:\\a.txt");
} catch (IOException e) {
// TODO 自动生成 catch 块
e.printStackTrace();
} }}