[Bug 3674] Unable to launch applet with a error Entry-Point manifest attribute for yours 'exc.fe.FeLaunch'not found
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Wed Jan 23 08:09:46 UTC 2019
https://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3674
--- Comment #14 from JiriVanek <jvanek at redhat.com> ---
Created attachment 1721
--> https://icedtea.classpath.org/bugzilla/attachment.cgi?id=1721&action=edit
reproducer based on #c9
import java.applet.Applet;
/**
*
* @author jvanek
*/
public class Raddata[un]Signed extends Applet {
public static Object loadObject(String name) {
Class cl;
try {
cl = Class.forName(name);
System.out.println("C1 value...." + cl);
return cl.newInstance();
} catch (ClassNotFoundException | InstantiationException |
IllegalAccessException ee) {
throw new RuntimeException(ee);
}
}
/**
* @param args the command line arguments
*/
public static void main(String... args) {
loadObject("java.lang.String");
}
@Override
public void start() {
main();
}
}
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20190123/93c5ff8b/attachment.html>
More information about the distro-pkg-dev
mailing list