Just a question about Native Methods
Now my question is can native methods be called from an applet?, return an image? If so will i get speed up in rendering. I am rendering a Fractal so depending on the zoom it takes a while to render, hence i am looking to speed it up.thanksNate
Hi,
the Java security manager will not allow you
to call native methods from an applet. This
would be a major security hole. You may,
however, use a servlet to call JNI functions
(with some measures taken to get that security
thing straight).
Have fun,
wiedkla