Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google应用程序引擎中的Java.io.FileOutputStream_Java_Google App Engine - Fatal编程技术网

Google应用程序引擎中的Java.io.FileOutputStream

Google应用程序引擎中的Java.io.FileOutputStream,java,google-app-engine,Java,Google App Engine,为什么“FileOutputStream”在Google应用程序引擎中是一个受限类?Google App Engine中的“FileOutputStream”还有其他使用方法吗?java.io.FileOutputStream在Google App Engine for java中是一个受限类,因为GAE/J应用程序不允许将数据写入其本地文件系统。因此,GAE/J应用程序不能直接使用此类 通过与GAE之外的应用程序连接或通信,可以写入文件系统(从而间接使用java.io.FileOutputSt

为什么“FileOutputStream”在Google应用程序引擎中是一个受限类?Google App Engine中的“FileOutputStream”还有其他使用方法吗?

java.io.FileOutputStream
在Google App Engine for java中是一个受限类,因为GAE/J应用程序不允许将数据写入其本地文件系统。因此,GAE/J应用程序不能直接使用此类

通过与GAE之外的应用程序连接或通信,可以写入文件系统(从而间接使用
java.io.FileOutputStream


GAE/J应用程序可以通过写入本地文件系统以外的方式在Google云环境中存储持久数据。

java.io.FileOutputStream
是Google App Engine for java中的受限类,因为不允许GAE/J应用程序将数据写入其本地文件系统。因此,GAE/J应用程序不能直接使用此类

通过与GAE之外的应用程序连接或通信,可以写入文件系统(从而间接使用
java.io.FileOutputStream

GAE/J应用程序可以在谷歌云环境中存储持久数据,而不是通过写入本地文件系统