displaying image
hi there,
i have created a swing applet displays me a url, what the url returns me is the image in binary format, and i want to show the complete image using that binary data
so how do i do it.
some thing like this :
URL url = new URL("http://192.168.1.1:8086/file-storage/download/");
JEditorPane jep = new JEditorPane();
jep.setPage(url);
output is in binary on my applet window.

