7

JFileChooser 保存ダイアログのファイル名フィールドのテキストで、拡張子ではなくファイル名だけを選択したいと思います。

私は現在これを持っています:

現在の様子

そして、それを次のようにしたい:

理想的には、それがどのように見えるか

これは単純な変更ですが、私の意見では、ユーザーは誤って拡張子を消去することなく、すぐにファイル名を入力し始めることができるため、ファイルの保存がはるかに簡単になります。

拡張機能が不足している場合は強制的に追加できることはわかっていますが、拡張機能は必須ではなく、強制する必要があるとは思わないため、これを行いたくありません。

それで、これを達成する方法はありますか?

4

3 に答える 3

2

The API does not offer that directly but one simple way to do it is to scan the component hierarchy, looking for a JTextField and then change the selection of that textfield.

Here is an example of that solution:

import java.awt.Component;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;

import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

public class TestJFileChooser {

    public TestJFileChooser() {

    }

    protected void initUI() {
        JFrame frame = new JFrame(TestJFileChooser.class.getSimpleName());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        final JButton button = new JButton("Click me");
        button.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                JFileChooser chooser = new JFileChooser();
                chooser.setSelectedFile(new File(chooser.getCurrentDirectory(), "save.dat"));
                final JTextField textField = getTexField(chooser);
                if (textField != null) {
                    SwingUtilities.invokeLater(new Runnable() {
                        @Override
                        public void run() {
                            String text = textField.getText();
                            if (text != null) {
                                int index = text.lastIndexOf('.');
                                if (index > -1) {
                                    textField.setSelectionStart(0);
                                    textField.setSelectionEnd(index);
                                }
                            }
                        }
                    });
                }
                chooser.showSaveDialog(button);
            }

            private JTextField getTexField(Container container) {
                for (int i = 0; i < container.getComponentCount(); i++) {
                    Component child = container.getComponent(i);
                    if (child instanceof JTextField) {
                        return (JTextField) child;
                    } else if (child instanceof Container) {
                        JTextField field = getTexField((Container) child);
                        if (field != null) {
                            return field;
                        }
                    }
                }
                return null;
            }
        });
        frame.add(button);
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                TestJFileChooser fc = new TestJFileChooser();
                fc.initUI();
            }
        });
    }
}
于 2013-06-14T07:52:00.283 に答える
0

デフォルトのコンポーネントでこれを設定することはできないようです。

私はあなたがそれを拡張する必要があると思います、このチュートリアルはあなたを助けるでしょう:

https://today.java.net/pub/a/today/2007/02/22/how-to-write-custom-swing-component.html

于 2013-06-14T07:36:44.943 に答える
0

com.sun.java.swing.plaf.windows.WindowsFileChooserUIメソッドを拡張してオーバーライドすることで、カスタム JFileChooser を作成できると思いますsetFileName()

于 2013-06-14T07:50:54.780 に答える