java 实现文件监控

来源:互联网 发布:国家旅游局2016年数据 编辑:程序博客网 时间:2024/05/01 15:45
 
public class MainFrame extends JFrame {

    
private JPanel contentPane;
    
private JTextField textField;
    
private JTextArea textArea;

    
public static void main(String[] args) {
        EventQueue.invokeLater(
new Runnable() {
            
public void run() {
                
try {
                    MainFrame frame 
= new MainFrame();
                    frame.setVisible(
true);
                } 
catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    
public MainFrame() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(
100100543300);
        contentPane 
= new JPanel();
        contentPane.setBorder(
new EmptyBorder(5555));
        setContentPane(contentPane);
        contentPane.setLayout(
null);

        JLabel label 
= new JLabel("监控路径:");
        label.setBounds(
33206515);
        contentPane.add(label);

        textField 
= new JTextField("D:/");
        textField.setBounds(
901621921);
        contentPane.add(textField);
        textField.setColumns(
10);

        JButton button 
= new JButton("开始监控");
        button.addActionListener(
new ActionListener() {
            
public void actionPerformed(ActionEvent e) {
                
try {
                    addWatch();
                } 
catch (Exception ex) {
                    ex.printStackTrace();
                }
            }
        });
        button.setBounds(
319169323);
        contentPane.add(button);

        textArea 
= new JTextArea();
        JScrollPane scrollPane 
= new JScrollPane(textArea);
        scrollPane.setBounds(
3345480207);
        contentPane.add(scrollPane);
    }

    
public void addWatch() throws Exception {
        String path 
= textField.getText();
        
int mask = JNotify.FILE_CREATED | JNotify.FILE_DELETED
                
| JNotify.FILE_MODIFIED | JNotify.FILE_RENAMED;
        
boolean watchSubtree = true;
        
//添加文件监听
        int watchID = JNotify.addWatch(path, mask, watchSubtree, new Listener());
    }

    
class Listener implements JNotifyListener {
        
public void fileRenamed(int wd, String rootPath, String oldName,
                String newName) {
            textArea.append(
"文件:" + rootPath + " : " + oldName + " 重命名为: "
                    
+ newName + "\n");
        }

        
public void fileModified(int wd, String rootPath, String name) {
            textArea.append(
"文件修改 " + rootPath + " : " + name + "\n");
        }

        
public void fileDeleted(int wd, String rootPath, String name) {
            textArea.append(
"删除文件: " + rootPath + " : " + name + "\n");
        }

        
public void fileCreated(int wd, String rootPath, String name) {
            textArea.append(
"新建文件: " + rootPath + " : " + name + "\n");
        }
    }
}