Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
import java.awt.event.*;
import javax.swing.*;
public class OpenFileChooser {
public static void main(String[] args) {
JFrame frame = new JFrame();
JButton button = new JButton("Öffne FileChooser");
frame.add(button);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JFileChooser fc = new JFileChooser();
fc.showOpenDialog(null);
}
});
frame.pack();
frame.setVisible(true);
}
}