Java Box SDK - How get downloaded file

新規投稿

コメント

2件のコメント

  • cbetta

     to download the file use the following code:

     

    BoxFile file = new BoxFile(api, "id");
    List versions = file.getVersions();
    BoxFileVersion firstVersion = versions.get(0);
    
    FileOutputStream stream = new FileOutputStream(firstVersion.getName());
    firstVersion.download(stream);
    stream.close();
    0
    コメントアクション パーマリンク
  • cbetta

    My bad, that's the same code. Are you actually piping the stream to a file?

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。