How to avoid saving the transferred files in the client machine?

Respected Sir/ Madam,

I am doing my project in Network Security using java. In my project I have to create some Client/Server architecture model. From server the files should be transferred to the client machine. But after transferring the files it should be restricted that the transferred files should not be saved in the client machine locally. How can I acheive this? Could U help me please?

[408 byte] By [indira_mcaa] at [2007-11-26 21:40:47]
# 1
If you don't want the files saved, don't save them!
ejpa at 2007-7-10 3:25:41 > top of Java-index,Core,Core APIs...
# 2
If we transfer the file contents means then using FileOutputStream we have to save the contents know. Then how could we see the contents without saving it locally. Thank you very much for your reply. If U explain it more then I will be thankful to you. Please
indira_mcaa at 2007-7-10 3:25:41 > top of Java-index,Core,Core APIs...
# 3
Then don't use FileOutputStream. If you just want the file contents in memory, and they will fit, and you don't want to save to a local file, look at ByteArrayOutputStream. If that's not your requirement I don't really understand what it is.
ejpa at 2007-7-10 3:25:41 > top of Java-index,Core,Core APIs...