引用页_初学Java:仿写记事本_OpenFile.java

<< 返回
  

import java.io.File;
import java.io.FileReader;
import java.io.Reader;

import javax.swing.JFileChooser;
import javax.swing.filechooser.FileNameExtensionFilter;

public class OpenFile {
	private Notepad notepad = null;
	private JFileChooser fileChooser = null;
	private File file = null;
	private FileNameExtensionFilter filterTXT = null;
	private int result = 0;
	private Reader in = null;
	
	public OpenFile(Notepad notepad) {
		this.notepad = notepad;
		this.fileChooser = new JFileChooser();
		this.filterTXT = new FileNameExtensionFilter("文本文档(*.txt)", "txt");
		this.fileChooser.setFileFilter(this.filterTXT);	//设置默认的TXT文件过滤器
		result = fileChooser.showOpenDialog(this.notepad.getFrame());
		if(result == JFileChooser.APPROVE_OPTION) {	//如果点击了“打开”
			this.file = fileChooser.getSelectedFile();	//得到已选择的文件
			this.readFile();
		} else {
			this.file = null;
		}
	}
	
	private void readFile() {
		if (this.file != null && this.file.exists() && this.file.canRead()) {
			try {
				this.in = new FileReader(this.file);
				char b[] = new char[(int)this.file.length()];
				in.read(b);
				String str = new String(b);
				in.close();
				System.out.println(str);
				this.notepad.getTextArea().setText(str);
				notepad.setCurrentFile(this.file);
				notepad.changTitle(this.file.getName());
				notepad.setSavedString(str);
			} catch (Exception ex) {
				ex.printStackTrace();
			}
		} else {
			System.out.println("发生异常!\nOpenFile.java: readFile()");
		}		
	}
}

  
<< 返回

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值