Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Java JNotify to listen for directories events.

However, whenever i'm running the program below, the program is terminating immediately with no error nothing

Instead, i think the program should wait for events

import net.contentobjects.jnotify.*;


public class ListenFile 
{
    public static void main(String [] args) throws JNotifyException
    {
        String path = "C:/Users/noor/Desktop/Files";
        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 JNotifyListener(){

            @Override
            public void fileCreated(int arg0, String arg1, String arg2) {

                System.out.println("1");
            }

            @Override
            public void fileDeleted(int arg0, String arg1, String arg2) {
                // TODO Auto-generated method stub
                System.out.println("2");
            }

            @Override
            public void fileModified(int arg0, String arg1, String arg2) {
                // TODO Auto-generated method stub
                System.out.println("3");
            }

            @Override
            public void fileRenamed(int arg0, String arg1, String arg2,
                    String arg3) {
                // TODO Auto-generated method stub
                System.out.println("4");
            }});
        try
        {
                Thread.sleep(1000000);
        }
        catch (InterruptedException e1)
        {
        }



    }
}
share|improve this question
Did you forget to add your program? – PaĆ­lo Ebermann Feb 21 '11 at 23:46
Here's part of the program, however in this i'm only trying jnotify – Noor Feb 22 '11 at 4:57

1 Answer

up vote 1 down vote accepted

Your program needs to enter a while (true) {}; loop or some other loop after the catch clause that will not let the application terminate.

share|improve this answer
Thanks, it works!! – Noor Feb 22 '11 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.