📄 e902. getting the large file-type icon of a file.txt
字号:
This example uses an unsupported class - - sun.awt.shell.ShellFolder - - and therefore will not work in all virtual machines.
// Create a File instance of the file
File file = new File("filename.txt");
try {
sun.awt.shell.ShellFolder sf = sun.awt.shell.ShellFolder.getShellFolder(file);
// Get large icon
Icon icon = new ImageIcon(sf.getIcon(true), sf.getFolderType());
} catch (FileNotFoundException e) {
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -