展开全部
给你源代码,可以直老陵兄接运行。现场为你写的,可以给分侍袭汪好啊啊
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();
}
}
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();
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询