e902. getting the large file-type icon of a file.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 13 行

TXT
13
字号
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 + =
减小字号Ctrl + -
显示快捷键?