I have a program witch, behave as a proxy server, read from the web and send to the browser the web pages, my problem is that, the program works to read and write the text but not for the images. -- private PrintWriter toBrowser; private BufferedReader fromWeb;
while ( true ) { str = fromWeb.readLine(); if ( str == null ) break; if ( str.length() == 0 ) echoing = false; if( echoing ) System.out.println(str); toBrowser.println(str); } --- have you any solution please.