ketan110
ketan110

Reputation: 171

Google App Engine not supported Java.io.FileOutputStream

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

Answers (1)

Ivo Limmen
Ivo Limmen

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

Related Questions