What version of jclouds are you using?
Try this…
ObjectApi objectApi = cloudFiles.getObjectApi(REGION, CONTAINER);
SwiftObject swiftObject = objectApi.get("uploadObjectFromFile.txt”);
// Write the object to a file
File file = File.createTempFile("uploadObjectFromFile", ".txt");
BufferedOutputStream outputStream = new BufferedOutputStream(new
FileOutputStream(file));
ByteStreams.copy(swiftObject.getPayload().openStream(), outputStream);
Everett
On Dec 22, 2014, at 6:23 AM, Sofiane Soulfly <[email protected]> wrote:
> Hello everybody,
>
> after I uploaded successfully a text file to Swift, now I want download
> that file into my file system.
> I tried with ObjectApi.get but nothing was downloaded.
> Thank you.
>
> Regards,
>
> SB