我有JFrame
和JFileChooser
。需要有一個自定義導入按鈕,而不是默認文件選擇器操作按鈕。JFileChooser.getSelectedFile()在執行自定義動作按鈕時返回null
如果我使用自定義操作按鈕,JFileChooser.getSelectedFile()
如果我在文件名稱文本框中輸入值返回null。而如果我點擊文件並點擊自定義導入,我可以得到我選擇的文件。
在這裏,我包括在樣本代碼重現這個
import java.awt.BorderLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class FileChooserDemo extends JPanel
implements ActionListener {
private static final long serialVersionUID = 1L;
JFileChooser importFileChooser;
JFrame frame;
private void createAndShowGUI() {
//Create and set up the window.
frame = new JFrame("FileChooserDemo");
JPanel inputJobDetailsPanel = new JPanel(new BorderLayout(0,5));
importFileChooser = new JFileChooser();
importFileChooser.setControlButtonsAreShown(false);
importFileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
importFileChooser.setMultiSelectionEnabled(false);
inputJobDetailsPanel.add(importFileChooser, BorderLayout.CENTER);
GridBagLayout importButtonPanelLayout = new GridBagLayout();
importButtonPanelLayout.columnWidths = new int[] {150};
importButtonPanelLayout.rowHeights = new int[] {30};
JPanel importButtonPanel = new JPanel();
importButtonPanel.setLayout(importButtonPanelLayout);
JButton importButton = new JButton("Custom Import");
importButton.setActionCommand("import");
importButton.addActionListener(this);
importButtonPanel.add(importButton, new GridBagConstraints());
JButton OtherButton = new JButton("Other Action");
OtherButton.setActionCommand("otherImport");
OtherButton.addActionListener(this);
importButtonPanel.add(OtherButton, new GridBagConstraints());
inputJobDetailsPanel.add(importButtonPanel, BorderLayout.PAGE_END);
frame.add(inputJobDetailsPanel);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FileChooserDemo().createAndShowGUI();
}
});
}
@Override
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
if(command.equals("import")) {
if(importFileChooser.getSelectedFile() == null) {
JOptionPane.showMessageDialog(frame, "You entered file name but getSelectedFile() return null");
}else {
JOptionPane.showMessageDialog(frame, "Chosen File Name: " + importFileChooser.getSelectedFile().getName());
}
}else {
JOptionPane.showMessageDialog(frame, "You clicked other action");
}
}
}
O/P:
重現步驟:
- 運行應用程序
- 輸入一個有效的文件名稱N「文件名」文本框中
- 點擊自定義導入
- 現在你可以看到「您輸入文件名,但getSelectedFile()返回NULL」
注意:如果我用importFileChooser.setControlButtonsAreShown(true);
我可以得到getSelectedFile(),即使我在文本框中輸入,而不點擊文件。
其實我想寫一個自動化腳本,所以我只能通過「文件名」文本框輸入文件路徑。
任何想法通過getSelectedFile()獲取文件而不點擊文件?
無法在Mac OS X上重現;選擇器UI沒有「文本框」。 – trashgod
@trashgod:在這裏我包含了屏幕截圖。我可以在Windows和Linux中看到這種情況。 – Tamil