tags:

views:

152

answers:

2

how to do the file transfer using RMI in java?

+1  A: 

You need to read chunks of the file, send them over the wire via an RMI call, and then write them on the other side.

This library may help: http://openhms.sourceforge.net/rmiio/

Anon
+1  A: 

Hi,

I did a little googling and found this link. It might help you.

http://java.sun.com/developer/codesamples/rmi.html#file

vijay.shad