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.
/*
* Created on 06.06.2005@13:46:36
*
* TODO Some Licence info...
*/
package de.tutorials;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
/**
* @author TDarimont
*
* TODO Explain me
*/
public class SWTExample {
public static void main(String[] args) throws Exception {
final String SWT_DLL_FILENAME = "swt-win32-3063.dll";
final File file = new File(SWT_DLL_FILENAME);
//Gibts die SWT DLL schon in unserem aktuellen Verzeichnis?
if (!file.exists()) {
//Wenn nein, entpacke sie aus dem jar ins aktuelle Verzeichnis
InputStream is = SWTExample.class.getClassLoader()
.getResourceAsStream(SWT_DLL_FILENAME);
FileOutputStream fos = new FileOutputStream(file);
byte[] buffer = new byte[1024];
int len = 0;
while ((len = is.read(buffer)) >= 0) {
fos.write(buffer, 0, len);
}
is.close();
fos.flush();
fos.close();
}
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("SWTExample");
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
//Trying to delete swt-lib...
file.delete();
//Oder
// Runtime.getRuntime().addShutdownHook(new Thread(){
// public void run(){
// file.delete();
// }
// });
}
}
Manifest-Version: 1.0
Main-Class: de.tutorials.SWTExample
Class-Path: lib/swt.jar