Summary

ファイル、ディレクトリなどのSystemIconを取得します。

Source Code Examples

// 16x16
smallLabel.setIcon(FileSystemView.getFileSystemView().getSystemIcon(file));
// 32x32
largeLabel.setIcon(new ImageIcon(ShellFolder.getShellFolder(file).getIcon(true)));
View in GitHub: Java, Kotlin

Explanation

上記のサンプルでは、Windows環境などからファイルをパネルにドロップするとそのファイルのSystemIconを表示できます。

Reference

Comment