Hi all,
I'm trying to upload a large file (24gb) from Java using the Droopbox API V2, but I have a Out Of Memory Error.
I'm using the next line to do the upload:
cli.files().uploadBuilder(file_path_dropbox).uploadAndFinish(in);
Where:
file_path_dropbox = The path to Dropbox
in = the InputStream generated from FileInputStream(pathLocalFile)
I had read that I can use the uploadSessionStart() to do large uploads, but I never used it previously and I don't find some example of this.
How can I fix it?
Regards