Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 JPEG 文件列表(列出照片),我希望 Windows 的默认查看器为这个扩展打开它们,我该怎么做?
您可以为此使用java.awt.Desktop该类:
java.awt.Desktop
Desktop.getDesktop().open(new File("image.jpg"));
这将使用默认应用程序在您的计算机上打开 JPG 文件来打开图像。