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 09.05.2005@17:28:13 by Darimont
*
* TODO Licence info
*/
package de.tutorials;
import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;
/**
* @author Darimont
*
* TODO Explain me
*/
public class FileClassLoaderExample {
public static void main(String[] args) throws Exception {
URLClassLoader ucl = new URLClassLoader(new URL[] { new File(
"C:/diplom/eclipse/3.0.2/eclipse/workspace/de.tutorials/bin")
.toURL() });
IFoo foo = (IFoo) ucl.loadClass("de.tutorials.FooImpl").newInstance();
foo.foo();
}
}
/*
* Created on 09.05.2005@10:50:32 by Darimont
*
* TODO Licence info
*/
package de.tutorials;
/**
* @author Darimont
*
* TODO Explain me
*/
public interface IFoo {
void foo() throws Exception;
}
/*
* Created on 09.05.2005@10:51:02 by Darimont
*
* TODO Licence info
*/
package de.tutorials;
/**
* @author Darimont
*
* TODO Explain me
*/
public class FooImpl implements IFoo {
/*
* (non-Javadoc)
*
* @see de.tutorials.IFoo#foo()
*/
public void foo() {
System.out.println("foo");
}
}