Q
Quick Function
If you have an applet in html, you have something like:
<applet
codebase = "."
archive = "a.jar"
code = "com.aa.Applet1.class"
name = "TestApplet"
width = "400"
height = "300"
hspace = "0"
vspace = "0"
align = "middle"<param name = "para1" value = "aaa">
Is there a way to transfer a binary object to applet, for example
<param name = "image" value = "http://www.site.com/1.jpg">
What is transfered is not a string URL, but actually the image object?
Thanks,
qq
<applet
codebase = "."
archive = "a.jar"
code = "com.aa.Applet1.class"
name = "TestApplet"
width = "400"
height = "300"
hspace = "0"
vspace = "0"
align = "middle"<param name = "para1" value = "aaa">
Is there a way to transfer a binary object to applet, for example
<param name = "image" value = "http://www.site.com/1.jpg">
What is transfered is not a string URL, but actually the image object?
Thanks,