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
|
feedback
|
|
send first file flush it and send second one :) | |||||
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. | |||||
feedback
|
[homework]tag – Peter Lawrey Nov 3 '11 at 11:30