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.
/*
* Main.java
*
*/
import java.util.Date;
import javax.swing.JComboBox;
import javax.swing.JFrame;
/**
*
* @author jweckbach
*/
public class Main {
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JFrame j = new JFrame();
j.setSize(500,500);
final Integer five = new Integer(5);
String test = "Test";
final Date d = new Date();
Object[] data = {five,test,d};
final JComboBox box = new JComboBox(data);
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
j.getContentPane().add(box);
j.setVisible(true);
Thread t = new Thread(){
public void run(){
try {
Thread.sleep(5000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
box.removeItem(five);
try {
Thread.sleep(5000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
box.removeItem("Test");
try {
Thread.sleep(5000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
box.removeItem(d);
}
};
t.start();
}
}