Ky -
Ky -

Reputation: 32113

How do I get a file's icon in Java?

I'm making a basic file browser and wish to display the icon of each file. Is there any way to get this?

Upvotes: 11

Views: 7871

Answers (1)

camickr
camickr

Reputation: 324128

Icon icon = FileSystemView.getFileSystemView().getSystemIcon( File );

Upvotes: 13

Related Questions