How to transfer large file (File size > Heap Size) over the network?
Posted
by
neo
on Stack Overflow
See other posts from Stack Overflow
or by neo
Published on 2012-04-16T11:02:54Z
Indexed on
2012/04/16
11:29 UTC
Read the original article
Hit count: 142
java
|data-structures
How to transfer large file (File size > Heap/RAM Size) over the network ?
Lets say I have file (size 10GB) I want to transfer it machine a (RAM 512mb) to machine b (RAM 512mb).
Want achieve this using java code.
First, is it possible ? Any recommendation on framework. If possible, can we speed this up using threading ? Important criteria: file's data sequence needs to be maintained during transfer. Any example will be great help.
© Stack Overflow or respective owner