0

我正在尝试arraylist从文件夹中提取图标图像,但我不断收到 NullPointerException。我已经可以提取较小的版本,但是它们太小了。我要获取的图标是常规大小的图标。filePaths保存图标位置列表。iconBIG.add(...)NullPointerException错误指向的地方。

// Global
private ArrayList<Icon> iconBIG = new ArrayList<Icon>();

// Within extractIcon()...
for (String target : filePaths)
    {
        try 
        {
            ShellFolder shell = ShellFolder.getShellFolder(new File(target));
            iconBIG.add(new ImageIcon(shell.getIcon(true)));    
        } 
        catch (FileNotFoundException e) 
        {
            e.printStackTrace();
        }
    }

编辑:我已经拥有使用 ShellFolder 的完全权限。

更新:如果我更改,它说new File(target)的位置(仅包含应用程序的完整路径)

getShellFolder(new File(target)

getShellFolder(new File(C:/foo/bar.lnk),

代码有效。我事先已经想好用\'/'替换所有内容,但我不明白为什么它仍然调用相同的错误。

4

1 回答 1

0

似乎工作正常,因为您允许执行此私有包。下面是一个适用于 JDK 6 的示例:

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.FileNotFoundException;
import javax.swing.*;
import sun.awt.shell.ShellFolder;

public class ShowShellIcon {
    private static void createAndShowUI() {
        final JFrame frame = new JFrame("Load Image");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JButton loadButton = new JButton("Display Image");
        loadButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                JFileChooser fc = new JFileChooser(
                        System.getProperty("user.home"));
                if (fc.showOpenDialog(null) == JFileChooser.APPROVE_OPTION){
                    try {
                        ShellFolder shell = ShellFolder.getShellFolder(fc
                                .getSelectedFile());
                        JOptionPane.showMessageDialog(null,
                                new ImageIcon(shell.getIcon(true)));
                    } catch (FileNotFoundException ex) {
                        ex.printStackTrace();
                    }
                }
            }
        });

        frame.add(loadButton);
        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                try {
                    UIManager.setLookAndFeel(
                            UIManager.getSystemLookAndFeelClassName());
                } catch (Exception ex) {
                    ex.printStackTrace();
                } 
                createAndShowUI();
            }
        });
    }
}
于 2013-03-27T05:17:03.220 回答