i have this assignment in my class where i have to do a Master/slave architecture, where master is a server that provides two files (password.txt and dictonary.txt), these files he sends to a slave who got a cracker and crak the passwords. atm the only way i can make it run is if i only send the dictonary.txt file over my outputstream, and the password.txt file is on the computer where the slave is. is there anyoe who can make an example of how to send 2 files like those .txt files over one outputstream? :D i prefer if you could do it in java

link|improve this question
I took the liberty of adding the [homework] tag – Peter Lawrey Nov 3 '11 at 11:30
How are you sending the file now? What's the error preventing sending two? – Dave Newton Nov 3 '11 at 11:31
I assume the OP closes the connect to signify the end of the file. – Peter Lawrey Nov 3 '11 at 11:32
feedback

2 Answers

send first file flush it and send second one :)

link|improve this answer
but how do it then pick them up? i have a BufferedReader inFromUser = new BufferedReader(new InputStreamReader(clientSocket.getInputStream())); on my client. how do i then take the first file and have it in one bufferedReader and then second file in another? – Lund Nov 4 '11 at 8:46
this may be helpful Copying-Multiple-Files-Over-Socket – Avil Nov 4 '11 at 9:04
feedback

A common way to send messages and files is to send the length before the content. For a file you could send the names as well, but I suspect you don't need it. The simplest way is to use DataInput/OutputStream.

link|improve this answer
okay. but i tryed something like that already and i had no clue how to set it up, code wise? Did something like this to create the stream FileInputStream fis = new FileInputStream(dic); DataOutputStream dos = new DataOutputStream(clientConnection.getOutputStream()); But how to i incorporate the length aspect? – Lund Nov 3 '11 at 11:44
dos.writeLong(fis.getChannel().size()); – Peter Lawrey Nov 3 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.