求一段java swing 代码实例

需求:显示一个窗口,里面有一空栏,旁边有浏览按钮选择文件夹路径,也可以选择文件,并在选择后,在空栏处显示所选择的路径并保存为可直接使用的string字段,供后台使用。... 需求:
显示一个窗口,里面有一空栏,旁边有浏览按钮选择文件夹路径,也可以选择文件,并在选择后,在空栏处显示所选择的路径并保存为可直接使用的string字段,供后台使用。
展开
 我来答
优质内容提供者andy
推荐于2016-09-29 · TA获得超过1561个赞
知道大有可为答主
回答量:2551
采纳率:72%
帮助的人:762万
展开全部
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class TestSwing extends JFrame implements ActionListener
{
private JTextField jtext;
private JFileChooser jfc;
private JButton jb;
public TestSwing(){
this.setLayout(new FlowLayout(FlowLayout.CENTER, 2, 2));
jtext = new JTextField(" ");
jfc = new JFileChooser();
this.setBounds(100, 100, 300, 300);
this.add(jtext);
jb = new JButton("察看路径");
this.add(jb);
this.setVisible(true);
jb.addActionListener(this);

}

public static void main(String [] args){
TestSwing ts = new TestSwing();
}

@Override
public void actionPerformed(ActionEvent e)
{
// TODO Auto-generated method stub
//jfc = new JFileChooser();
SFrame frame = new SFrame();
jtext.setText(frame.getPath());
}
}
class SFrame extends JFrame{
private JFileChooser jfc;
private String path;
public SFrame(){
jfc = new JFileChooser();
this.add(jfc);
this.setBounds(100, 100, 200, 200);
this.setVisible(true);
init();
}
public void init(){
if (JFileChooser.APPROVE_OPTION == jfc.showOpenDialog(this)) {
path=jfc.getSelectedFile().getPath();
System.out.println(path);
this.dispose();
}
}
public JFileChooser getJfc()
{
return jfc;
}
public void setJfc(JFileChooser jfc)
{
this.jfc = jfc;
}
public String getPath()
{
return path;
}
public void setPath(String path)
{
this.path = path;
}
}
请采纳
追问

您好,谢谢您提供的案例,经测试,有以下细节需要改进:

  1. 无法选择文件夹为路径;

  2. 取消文件选择对话框时会多出一个frame;

望能够改进并在代码缺陷处注释并说明原因,谢谢老师。

追答
class SFrame extends JFrame{
private JFileChooser jfc;
private String path;
public SFrame(){
jfc = new JFileChooser();
this.add(jfc);
this.setBounds(100, 100, 200, 200);
this.setVisible(true);
jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
init();
}
public void init(){
if (JFileChooser.APPROVE_OPTION == jfc.showOpenDialog(this)) {
path=jfc.getSelectedFile().getPath();
System.out.println(path);
this.dispose();
}else if (JFileChooser.CANCEL_OPTION == jfc.showOpenDialog(this)) {

this.dispose();
this.setVisible(false);
}
}
public JFileChooser getJfc()
{
return jfc;
}
public void setJfc(JFileChooser jfc)
{
this.jfc = jfc;
}
public String getPath()
{
return path;
}
public void setPath(String path)
{
this.path = path;
}
}
上面没怎么改就改下面了
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式