JFileChooser
類是一個為使用者提供選擇檔案的簡單機制的元件。
以下是javax.swing.JFileChooser
類的宣告 -
public class JFileChooser
extends JComponent
implements Accessible
以下是javax.swing.JFileChooser
類的欄位 -
以下是javax.swing.JFileChooser
類別建構函式 -
編號 | 建構函式 | 描述 |
---|---|---|
1 | JFileChooser() |
構造一個指向使用者預設目錄的JFileChooser 範例。 |
2 | JFileChooser(File currentDirectory) |
使用給定的檔案作為路徑構造JFileChooser 範例。 |
3 | JFileChooser(File currentDirectory, FileSystemView fsv) |
使用給定的當前目錄和FileSystemView 構造JFileChooser 範例。 |
4 | JFileChooser(FileSystemView fsv) |
使用給定的FileSystemView 構造一個JFileChooser 範例。 |
5 | JFileChooser(String currentDirectoryPath) |
使用給定路徑構造JFileChooser 範例。 |
6 | JFileChooser(String currentDirectoryPath, FileSystemView fsv) |
使用給定的當前目錄路徑和FileSystemView 構造JFileChooser 。 |
以下是javax.swing.JFileChooser
類的方法 -
該類繼承以下類中的方法 -
javax.swing.JComponent
java.awt.Container
java.awt.Component
java.lang.Object
使用編輯器建立以下Java程式:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class JFileChooserExample {
private JFrame mainFrame;
private JLabel headerLabel;
private JLabel statusLabel;
private JPanel controlPanel;
public JFileChooserExample() {
prepareGUI();
}
public static void main(String[] args) {
JFileChooserExample swingControlDemo = new JFileChooserExample();
swingControlDemo.showFileChooserDemo();
}
private void prepareGUI() {
mainFrame = new JFrame("Java Swing JFileChooser範例(tw511.com)");
mainFrame.setSize(400, 400);
mainFrame.setLayout(new GridLayout(3, 1));
mainFrame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent windowEvent) {
System.exit(0);
}
});
headerLabel = new JLabel("", JLabel.CENTER);
statusLabel = new JLabel("", JLabel.CENTER);
statusLabel.setSize(350, 100);
controlPanel = new JPanel();
controlPanel.setLayout(new FlowLayout());
mainFrame.add(headerLabel);
mainFrame.add(controlPanel);
mainFrame.add(statusLabel);
mainFrame.setVisible(true);
}
private void showFileChooserDemo() {
headerLabel.setText("Control in action: JFileChooser");
final JFileChooser fileDialog = new JFileChooser();
JButton showFileDialogButton = new JButton("選擇檔案...");
showFileDialogButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
int returnVal = fileDialog.showOpenDialog(mainFrame);
if (returnVal == JFileChooser.APPROVE_OPTION) {
java.io.File file = fileDialog.getSelectedFile();
statusLabel.setText("選擇檔案 :" + file.getName());
} else {
statusLabel.setText("使用者取消開啟檔案");
}
}
});
controlPanel.add(showFileDialogButton);
mainFrame.setVisible(true);
}
}
執行上面範例程式碼,得到以下結果: