求一段java swing 代码实例
需求:显示一个窗口,里面有一空栏,旁边有浏览按钮选择文件夹路径,也可以选择文件,并在选择后,在空栏处显示所选择的路径并保存为可直接使用的string字段,供后台使用。...
需求:
显示一个窗口,里面有一空栏,旁边有浏览按钮选择文件夹路径,也可以选择文件,并在选择后,在空栏处显示所选择的路径并保存为可直接使用的string字段,供后台使用。 展开
显示一个窗口,里面有一空栏,旁边有浏览按钮选择文件夹路径,也可以选择文件,并在选择后,在空栏处显示所选择的路径并保存为可直接使用的string字段,供后台使用。 展开
1个回答
展开全部
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;
}
}
请采纳
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;
}
}
请采纳
追问
您好,谢谢您提供的案例,经测试,有以下细节需要改进:
无法选择文件夹为路径;
取消文件选择对话框时会多出一个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;
}
}
上面没怎么改就改下面了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询