博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
博为峰Java技术文章 ——JavaSE Swing JFileChooser组件Ⅱ
阅读量:6610 次
发布时间:2019-06-24

本文共 1983 字,大约阅读时间需要 6 分钟。

hot3.png

代码示例如下:

public class BWF implements ActionListener{

JFrame f=null;

JLabel label=null;

JTextArea textArea=null;

JFileChooser fileChooser;

public BWF() {

f=new JFrame("");

Container contentPane=f.getContentPane();

textArea=new JTextArea();

JScrollPane scrollPane=new JScrollPane(textArea);

scrollPane.setPreferredSize(new Dimension(350, 300));

JPanel panel=new JPanel();

JButton b1=new JButton("新建文件");

b1.addActionListener(this);

JButton b2=new JButton("退出文件");

b2.addActionListener(this);

panel.add(b1);

panel.add(b2);

label=new JLabel("",JLabel.CENTER);

//建立一个FileChooser对象,指定D盘目录为默认文件对话框路径

fileChooser=new JFileChooser("D:\\");

contentPane.add(label,BorderLayout.NORTH);

contentPane.add(scrollPane,BorderLayout.CENTER);

contentPane.add(panel,BorderLayout.SOUTH);

f.pack();

f.setVisible(true);

f.addWindowListener(new WindowAdapter() {

public void windowClosing(WindowEvent e) {

System.exit(0);

}

});

}

public static void main(String[] args) {

new BWF();

}

public void actionPerformed(ActionEvent e) {

File file=null;

int result;

if(e.getActionCommand().equals("新建文件")){

fileChooser.setApproveButtonText("确定");

fileChooser.setDialogTitle("打开文件");

result=fileChooser.showOpenDialog(f);

textArea.setText("");

if(result==JFileChooser.APPROVE_OPTION){

file=fileChooser.getSelectedFile();

label.setText("你打开的文件名为:"+file.getName());

}

else if(result==JFileChooser.CANCEL_OPTION){

label.setText("你没有选择任何文件");

}

FileInputStream fileInputStream=null;

if(file!=null){

try{

fileInputStream=new FileInputStream(file);

}catch(Exception e1){

label.setText("没找到文件");

return;

}

String readbyte=null;

try{

BufferedReader br = new BufferedReader(new InputStreamReader(fileInputStream));

while((readbyte=br.readLine())!=null){

textArea.setLineWrap(true);

textArea.append(String.valueOf(readbyte));

}

}catch(Exception e1){

label.setText("读取文件错误");

}finally {

try{

if(fileInputStream!=null){

fileInputStream.close();

}

}catch(Exception e1){

}

}

}

}

}

}

6632398174768730300.png

 

6632483936675700311.png

 

转载于:https://my.oschina.net/u/2971691/blog/879235

你可能感兴趣的文章
Concurrent包常用方法简介
查看>>
OGG复制进程延迟处理思路与方法
查看>>
黑鹰坠落 感
查看>>
CopyOnWriteArrayList
查看>>
我的友情链接
查看>>
JAVA的StringBuffer类
查看>>
Douyu
查看>>
Citrix Receiver For Android V2.1发布
查看>>
scrapy深入学习----(4)
查看>>
plsql使用引号,输出空行
查看>>
WebService - Client调用(Axis2-Document)
查看>>
Halcon识别金属上的雕刻字符
查看>>
LVM逻辑卷基本概念及LVM的工作原理
查看>>
Vsftpd服务
查看>>
vsftp配置
查看>>
Centos linux 让Thin代替redmine自带server
查看>>
rhel6计划任务Crontab及实例
查看>>
如何解决安装linux时遇到GPT分区表的问题
查看>>
Windows Server 2016 Storage Replica
查看>>
yum在Centos下安装svn
查看>>