java - How to extract rar file (AppEngineFile) in Google App Engine -
my application requires extracting rar file in google app engine. can extract rar file using this library supports java.io.file , not support appenginefile. can not find solution solve problem. have ideas ?
thanks in advance
the junrar library says takes inputstream, not file.
you may want try uploading rar files blobstore instead of reading filesystem. can use blobstoreinputstream read data unrar.
note since can't write filesystem, you'll need store unpacked data blobstore or datastore.
Comments
Post a Comment