给你源代码,可以直接运行。现场为你写的,可以给分啊啊
import javax.swing.*;
import java.awt.event.*;
public class OpenEdit extends JFrame
{
JButton openBtn=new JButton("打开记事本");
public OpenEdit()
{
this.getContentPane().add(openBtn);
openBtn.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
Runtime.getRuntime().exec("notepad 1.txt");//修改这里的1.txt为你自己的文本文件名
}
catch (Exception ex)
{
ex.printStackTrace();
}
}
});
this.setSize(400,300);
this.setVisible(true);
}
public static void main(String[] args)
{
new OpenEdit();
}
}
参考资料:百度一下