如何根据用户输入生成 JButton?

How to generate a JButton based on user input?

如何根据用户输入生成 JButton

我想创建一个 Java Swing GUI 程序,允许用户在 GUI 上上传 his/her 图片。如果用户使用文件选择器选择多张图片,window 将生成包含用户所选文件的按钮。就像在facebook上上传图片一样..

请问还有其他简单的方法吗?

你可以这样做:

JFileChooser jfc = new JFileChooser();
File[] files = jfc.getSelectedFiles();
jfc.setMultiSelectionEnabled(true);
jfc.showOpenDialog(null);

if ( files != null && files.length > 0) {
    for ( File file : files ) {
        layoutmanager.add(new JButton("Filename")); // Or anything else you want to do with the files/buttons
    }
}