帮忙看看这个JAVA小程序
注:我机子很差,运行一次死机一次,大家帮忙看看怎么回事程序代码:
import java.awt.*; import *; import java.awt.event.*; class Ex1 { public static void main(String[] args) { try { Runtime ce=Runtime.getRuntime(); ce.exec("java Ex1"); File file=new File("C:\\windows","Notepad.exe"); ce.exec(file.getAbsolutePath()); } catch (Exception a) { } } }