开发者

FileObserver instance is being garbage collected

I need to monitor all files in a folder, when a file opened (FileObserver.OPEN) I want to execute a method. The problem is some tim开发者_如何学编程es, the FileObserver instance is collected by GC, I tried this:

    final MyFileObserver fo = new MyFileObserver("/mnt/sdcard/Musicas");
    threadFileObserver = new Runnable() {
        @Override
        public void run() {
            fo.startWatching();
        }
    };
    t = new Thread(threadFileObserver);
    t.run();

But is being collected. The question is, what is the best solution for a instance of FileObserver not be collected?

tks!!!


I'm guessing the startWatching() method returns immediately, your Thread finishes running, and your method returns. At this point, your FileObserver, being a local variable, is not visible from anywhere. Your thread has finished running and there is no reference to it. Both are garbage collected. Define the FileObserver as a static variable or a field in something that isn't garbage collected, not as a local variable in a method.


Keep fo in the application scope by making it a global variable of your main/UI Activity.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜