Hi everyone. I'm currently troubleshooting my
java program,
I'm trying to link 2 working java programs together.
First program, Client and Server would communicate with each other using PrintWriter and BufferedReader. The program will check whether Client has the correct password to access to the server.
When granted access, second portion of the program will run. This program is a file transfer program. It's using BufferedInputStream and BufferedOutputStream to read and write the stream.
I would like to know whether BufferedReader and BufferedInputStream have any conflict with each other? Would there be any problem if i'm using 1 socket to do all this? In future, I will be transfering more than 1 file.
Please advice. Thanks in advance!
[ October 10, 2007: Message edited by: Adrian Lee ]