Re: [google-appengine] App engine GaeVFS java.io.FilePermission

2011-06-08 Thread Robert Kluin
Where is the file stored? http://code.google.com/appengine/kb/java.html#readfile Robert On Wed, Jun 8, 2011 at 05:30, xiu wrote: > when i use app engine to develop my apps,and i just want to read the > file stored in the gaevfs using the code : > this.shpAccessFile = new RandomAccessFile(

[google-appengine] App engine GaeVFS java.io.FilePermission

2011-06-08 Thread xiu
when i use app engine to develop my apps,and i just want to read the file stored in the gaevfs using the code : this.shpAccessFile = new RandomAccessFile(this.shpFileName, "r"); but it throw new AccessControlException("access denied "+perm, perm); so can someone tell me how to solve the problem? ja