Reputation: 171
I am very new to google App engine please give me proper solution,my problem is below
when i am trying to deploy my web application to google app engine it shows me error like Java.io.FileOutputStream restricted
in google app engine
How to fix it.Is there any setting in google app angine so that this class is supportable without changing java code,
If not what is the alternative way for this problem. Below is my error code.
Uncaught exception from servlet
java.lang.NoClassDefFoundError: java.io.FileOutputStream is a restricted class.
Please see the Google App Engine developer's guide for more details.
Upvotes: 0
Views: 431
Reputation: 3155
On the Google App Engine lots of classes are simply not available or give you an SecurityException. You are simply not allowed to read or write files on GAE.
Upvotes: 1