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 ファイルを開くためのデフォルトのアプリケーションを使用して画像が開きます。