资源简介
java实现根据文件名查找本地文件,该程序可直接放在eclipse或者Myeclipse中则可运行,不需要下载其他什么工具包,为开发人员节省了很多时间
代码片段和文件信息
package test;
import java.awt.Component;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
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;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class UIfileSearch extends Jframe {
public UIfileSearch() {
this.settitle(“文件搜索JAVA实现“);
this.setSize(600400);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
this.add(new SearchFilePanel());
}
public static void main(String[] args) {
UIfileSearch test = new UIfileSearch();
System.out.println(“5“);
test.setVisible(true);
}
}
class SearchFilePanel extends JPanel{
/**
* 路径浏览和查找按钮
* Buttons for browsing the file system and for starting the search
*/
private JButton browsesearch;
/**
* 查找条件,路径,查找过程
* the conditionsdirectoryprocess of Searching
*/
private JLabel filter directorystatusShow1statusShow2;
/**
* 输入查找条件和路径的文本框
* TextField for inputing the search filter and the file path
*/
private JTextField textFiltertextDirectory;
/**
* 显示查找结果的文本区
* the textArea to show the result of searching
*/
private JTextArea result;
private File selectedFile;
/**
* 找到的文件数量
* number of file had found
*/
private long countFiles;
/**
* temporary variable to store the and
*/
private String p f;
public SearchFilePanel() {
filter = new JLabel(“全部或者部分文件名:“2);
directory = new JLabel(“查找:“2);
statusShow1 = new JLabel(“准备收索...“2);
statusShow2 = new JLabel(“被发现的文件数:“);
textFilter = new JTextField(15);
textDirectory = new JTextField(15);
result = new JTextArea();
result.setEditable(false);
JScrollPane js = new JScrollPane(result);
browse = new JButton(“浏览“);
search = new JButton(“开始收索“);
/**
* 给浏览按钮设置监听事件
* add ActionListener for button browse directly
*/
browse.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent evt) {
JFileChooser jfc = new JFileChooser();
//Just choose a directory address
jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int d = jfc.showDialog(null “Browse the files“);
if(d == JFileChooser.APPROVE_OPTION) {
selectedFile = jfc.getSelectedFile();
textDirectory.setText(selectedFile.getPath());
}
相关资源
- 基于socket的用户注册,登录,文件上
- pc与手机蓝牙通信 java程序实现
- Java设计模式-类图大全(.chm)
- 能够处理括号的Java小计算器
- 1-10的代码
- 凯撒算法、playfair算法、hill算法的j
- JAVA 图片反色处理,放大或缩小
- java做的简易股票交易系统
- java社会实践报告
- 用java进行WPS的二次开发包
- java课程设计---学生信息管理系统 源代
- JS实现图片轮播效果(绝对可用
- 牛顿下山法、亚当姆斯法、最小二乘
- cas-client-java-2.1.1.zip
- java语言实现二叉树的各种操作
- java程序自动重新启动
- 数据库课程设计(JDBC+Swing)高校教材
- java实现简单的记事本程序内含源代码
- java在线客服聊天
- 《java技术开发大全》随书光盘源代码
- Java的输入输出流实现文件的复制
- java web实现文件的上传
- JAVAWEB批量文件器
- jaf-1_1_1.zip
- 使用java编写的简单的网络五子棋
- 《Java基础入门》_课后习题答案
- Java 汉诺塔_Hannoi GUI 可视化_图形用户
- 西安软件公司java笔试题
- Java解析fsn文件
- 会议室预定系统的Java实现
评论
共有 条评论