0

FileSystemJournalListener 未返回新捕获的图像路径。我的相机将图像保存到 sdcard/blackberry/pictures/...

但是听众在 store/home/user/pictures/Image_1337710522032.jpg 给我空白图像路径

实际保存的文件在 sdcard/BlackBerry/pictures/IMG00010-20111019-1225.jpg

我应该如何设置 FileSystemJournalListener 来扫描 sdcard 以查找新添加的图像路径?

提前致谢。

4

1 回答 1

1

这是BlackBerry 开发人员文档中应遵循的适当示例。

在我拥有的应用程序中,我FileSystemJournalListener的代码如下所示。您必须遍历 USN 才能找到新图像。

您还可以查看此页面以获取有关FileSystemJournal以及如何检查新文件的更多信息。

public class FileSystemListener implements FileSystemJournalListener, Runnable {
       /** The last USN to have to search until, when looking for new files added to the file system */
       private long _lastUSN;
       /** The filename of the new image */
       private String _imageFilename;

       public void run() {
          // TODO: do something with the new image
       }

       public FileSystemListener() {
          // we record the next system USN before the Camera app has a chance to add a new file
          _lastUSN = FileSystemJournal.getNextUSN();
       }

       public void fileJournalChanged() {
          long nextUSN = FileSystemJournal.getNextUSN();
          boolean imgFound = false;
          // we have to search for the file system event that is the new image
          for (long lookUSN = nextUSN - 1; (lookUSN >= _lastUSN) && !imgFound; --lookUSN) {
             FileSystemJournalEntry entry = FileSystemJournal.getEntry(lookUSN);
             if (entry == null) {
                break;
             } else {
                String path = entry.getPath();
                if (path != null) {
                   if (path.endsWith("png") || path.endsWith("jpg") || path.endsWith("bmp") || path.endsWith("gif")) {
                      switch (entry.getEvent()) {
                         case FileSystemJournalEntry.FILE_ADDED:
                            // either a picture was taken or a picture was added to the BlackBerry device
                            _lastUSN = lookUSN;
                            _imageFilename = path;
                            imgFound = true;

                            // unregister for file system events?
                            UiApplication.getUiApplication().removeFileSystemJournalListener(this);

                            // let this callback complete before responding to the new image event
                            UiApplication.getUiApplication().invokeLater(this);
                            break;
                         case FileSystemJournalEntry.FILE_DELETED:
                            // a picture was removed from the BlackBerry device;
                            break;
                      }
                   }
                }
             }
          }
       }
    }
于 2012-05-23T21:33:05.147 回答