معلومات المنتج:
استيراد java.io.File؛
import java.io.IOException;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JLabel;
import javax.swing.BoxLayout;
import javax.swing.filechooser.FileSystemView;
import sun.awt.shell.ShellFolder;
يمتد FileIconExtractor من الفئة العامة إلى JFrame بتنفيذ ActionListener {
Private JButton getIconBtn = new JButton("get Icon");
Private JPanel iconPanel = new JPanel();
خاص JTextField extField = جديد JTextField();
Private JLabel SmallIconLabel = new JLabel("أيقونة صغيرة هنا");
Private JLabel bigIconLabel = new JLabel("أيقونة كبيرة هنا");
عام FileIconExtractor () {
this.setSize(200, 150);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new BorderLayout());
getIconBtn.setActionCommand("GETICON");
getIconBtn.addActionListener(this);
iconPanel.setLayout(new BoxLayout(iconPanel, BoxLayout.Y_AXIS));
iconPanel.add(smallIconLabel);
iconPanel.add(bigIconLabel);
this.add(extField, BorderLayout.NORTH);
this.add(iconPanel, BorderLayout.CENTER);
this.add(getIconBtn, BorderLayout.SOUTH);
this.setVisible(true);
}
إجراء باطل عام (ActionEvent e) {
إذا (e.getActionCommand().equals("GETICON")) {
String ext = extField.getText();
ملف الملف؛
يحاول
{
file = File.createTempFile("icon", "." + ext);
FileSystemView view = FileSystemView.getFileSystemView();
Icon SmallIcon = view.getSystemIcon(file);
ShellFolder shellFolder = ShellFolder.getShellFolder(file);
Icon bigIcon = new ImageIcon(shellFolder.getIcon(true));
setIconLabel(smallIcon, bigIcon);
file.delete();
}
قبض على (IOException ioe)
{
ioe.printStackTrace();
}
}
}
مجموعة باطلة خاصةIconLabel (أيقونة SmallIcon، أيقونة bigIcon) {
SmallIconLabel.setIcon(smallIcon);
bigIconLabel.setIcon(bigIcon);
}
public static void main(String[] args) {
FileIconExtractor fie = new FileIconExtractor();
}
}