netbeans怎么设置JFileChooser来获取文件的路径?
就是把JFileChooser插入一个JFrame中后,不知道怎么使用它大神求帮助,根本不能设置按钮的事件啊QAQ...
就是把JFileChooser插入一个JFrame中后,不知道怎么使用它
大神求帮助,根本不能设置按钮的事件啊QAQ 展开
大神求帮助,根本不能设置按钮的事件啊QAQ 展开
1个回答
2015-06-05 · 知道合伙人互联网行家
关注
展开全部
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Test
{
public static void main(String args[])
{
new Test().init();
}
public void init(){
final JFileChooser j = new JFileChooser(new File("d:\\"));
final JFrame jf=new JFrame();
JButton jbtn=new JButton("我点");
jf.add(jbtn);
jbtn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
j.showOpenDialog(jf);
}
});
jf.setVisible(true);
jf.setSize(800,600);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Test
{
public static void main(String args[])
{
new Test().init();
}
public void init(){
final JFileChooser j = new JFileChooser(new File("d:\\"));
final JFrame jf=new JFrame();
JButton jbtn=new JButton("我点");
jf.add(jbtn);
jbtn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
j.showOpenDialog(jf);
}
});
jf.setVisible(true);
jf.setSize(800,600);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询