I am trying to write a file to a Google appengine application, but it gives an error message java.io.FileOutputStream is not supported by Google App Engine Java runtime environment
although i imported
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
source
share