实例介绍
【实例简介】将大量文件 按照文件扩展名进行 分类保存
【实例截图】
分类后的结果如下:
【核心代码】
package com.mingrisoft;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.util.List;
public class SortFrame extends JFrame {
/**
*
*/
private static final long serialVersionUID = -5599266804083691574L;
private JPanel contentPane;
private JTextField pathTextField;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
SortFrame frame = new SortFrame();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public SortFrame() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 434, 196);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
setTitle("文件夹分类管理");
JPanel panel = new JPanel();
panel.setBounds(0, 0, 418, 158);
contentPane.add(panel);
panel.setLayout(null);
JLabel messageLabel = new JLabel("分类文件夹:");
messageLabel.setBounds(19, 48, 92, 15);
panel.add(messageLabel);
pathTextField = new JTextField();
pathTextField.setBounds(121, 45, 187, 21);
panel.add(pathTextField);
pathTextField.setColumns(10);
JButton choicBbutton = new JButton("选择");
choicBbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
do_choicBbutton_actionPerformed(arg0);
}
});
choicBbutton.setBounds(318, 44, 77, 23);
panel.add(choicBbutton);
JButton sortButton = new JButton("确定分类");
sortButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
do_sortButton_actionPerformed(arg0);
}
});
sortButton.setBounds(156, 96, 93, 23);
panel.add(sortButton);
}
// 定义获取只可以选择文件夹的选择框
public JFileChooser getChooser() {
JFileChooser fd = new JFileChooser();
String windows = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
try {
UIManager.setLookAndFeel(windows);
} catch (Exception e) {
e.printStackTrace();
}// 设置见面风格
SwingUtilities.updateComponentTreeUI(fd);// 使设置的界面风格生效
fd.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); // 指示只显示目录
fd.showOpenDialog(this);
return fd;
}
protected void do_choicBbutton_actionPerformed(ActionEvent arg0) {
JFileChooser fd = getChooser();
if ((fd.getSelectedFile() != null) && (!fd.getSelectedFile().equals(""))) {
String strPath = fd.getSelectedFile().getPath();
pathTextField.setText(strPath);
}
}
@SuppressWarnings("rawtypes")
protected void do_sortButton_actionPerformed(ActionEvent arg0) {
SortUtil sortUtil = new SortUtil();
List list = sortUtil.getList(pathTextField.getText()); // 获取用户选择文件夹中所有文件集合
for (int i = 0; i < list.size(); i ) { // 循环遍历该文件集合
String strFile = list.get(i).toString();
int index = strFile.lastIndexOf(".");
if (index != -1) {
String strN = strFile.substring(index 1, strFile.length()); // 对文件夹进行截取,获取文件扩展名
int ind = strFile.lastIndexOf("\\");
String strFileName = strFile.substring(ind, index);
sortUtil.createFolder(pathTextField.getText() "\\" "分类");// 调用创建文件夹方法,新建文件夹
sortUtil.createFolder(pathTextField.getText() "\\" "分类" "\\" strN);
if (strFile.endsWith(strN)) {
// 将文件集合中与文件夹名称相同的文件复制到相应的文件夹中
sortUtil.copyFile(strFile,
pathTextField.getText() "\\" "分类" "\\" strN "\\" strFileName strFile.substring(index, strFile.length()));
}
}
}
JOptionPane.showMessageDialog(getContentPane(), // 给出用户分类完成提示框
"文件分类成功!", "信息提示框", JOptionPane.WARNING_MESSAGE);
}
}
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


网友评论
我要评论