我试图使用此命令,但速度很慢
如何编译使用java代码
我执行此代码2分钟但未在此时编译
JButton cn= new JButton("push me3");
cn.setBounds( 0,0,295,20 );
f.add(cn);
cn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String title =hellopanelx40.getText();
try {
Process p = Runtime.getRuntime().exec("javac example.java ");
p.waitFor();
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
catch (IOException e2) {
}
}
});
请帮帮我