Java:列出已插入的相机
我的程序当前使用 File.listRoots()
获取插入计算机的驱动器列表。但是,当我将相机或 MP3 播放器直接插入计算机(而不是插入存储卡)时,它不会列出,Windows 资源管理器中也没有驱动器号。例如,这是我的相机的位置:
Computer\Canon PowerShot SD750\Removable storage
我怎样才能列出没有驱动器号的相机/其他设备?我认为这需要某种 JNI 库,但我显然不确定。
谢谢!
PS 出于无奈,我确实尝试列出Computer\
的内容;当然没用。
更新:我在这里发现了这个问题:Windows 上的便携式设备路径;这正是我遇到的问题,但那里没有提供解决方案。
My program currently gets a list of drives plugged into the computer with File.listRoots()
. But, when I plug a camera or an MP3 player into the computer directly (instead of inserting the memory card), it's not listed, nor does it have a drive letter in Windows Explorer. For example, here's the location of my camera:
Computer\Canon PowerShot SD750\Removable storage
How can I also list cameras/other devices that do not have a drive letter? I assume this will require a JNI library of some sort, but I don't know for sure obviously.
Thanks!
P.S. Out of desperation, I did try to list the contents of Computer\
; it didn't work of course.
Update: I found this question here: Portable Device Path on Windows ; that's exactly the problem I'm having, but there is no solution laid out there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Java 7 在这一领域有一些看起来很有前途的类,例如:
http://download.java.net/jdk7/docs /api/java/nio/file/FileSystem.html
假设您也需要它在 Java 6 上工作,我建议运行 shell 脚本并解析其输出。
在 Windows 上,您可以运行 mountvol,在 Unix/MacOS X mount 等上运行。当然,解析输出会有点乏味,您必须担心应用程序运行的每个操作系统,但是,嘿,至少……不确定是什么。 ... 有用?
这里是一些在 Windows 上似乎很有帮助的示例代码:
这是我为电子书阅读器获得的输出:
Java 7 has some promising looking classes in this area, like this one:
http://download.java.net/jdk7/docs/api/java/nio/file/FileSystem.html
Assuming that you need it to work on Java 6 as well, I would suggest running a shell script and parsing its output.
On Windows you could run mountvol, on Unix/MacOS X mount etc. Of course parsing the output would be somewhat tedious and you would have to worry about every OS your app runs on, but hey, at least... not sure what.... it works?
Here is some sample code which seems helpful on Windows:
Here is the output I got for my ebook reader:
使用 JMTP 库解决上述问题
是我的代码
The solution to above problem using JMTP library on
Here is my code
这可能不是您正在寻找的答案,但是将它们分配给驱动器号不是一个选项吗?通常,您可以使用 Windows 上的“我的电脑”>“USB 设备”手动执行此操作。右键单击>管理>贮存。
JMF(java 媒体框架)中的 CaptureDeviceManager可能可以帮助您,但我对此表示怀疑。
This may not be the answer you're looking for, but is assigning them to a drive letter not an option? You can usually manually do this with USB devices on Windows using My Computer > right-click > Manage > Storage.
It's possible that CaptureDeviceManager in JMF (java media framework) could help you but I kind of doubt it.
也许你可以看看 Morena Framework http://www.gnome.sk/Twain/jtp。 htmlv(似乎是开源的,但有点贵;虽然有免费评估版),它适用于 TWAIN 兼容的扫描仪/相机(Windows/MAC)或 SANE 兼容(Linux 或其他 unix 风格),要获取已连接设备的列表,您可以这样做:
也许这会有所帮助,如果没有,我认为也许 JMF 是一个可能的解决方案。
Maybe you can take a look at Morena Framework http://www.gnome.sk/Twain/jtp.htmlv (seems to be open source, but a little expensive; though there is a free evaluation version), it is for TWAIN compatible scanners/cameras (Windows/MAC) or SANE compatible (Linux or other unix flavor), to get a list of connected devices, you can do this:
Maybe that could help,if not I think maybe JMF is a possible solution.