Tagged Questions
1
vote
2answers
919 views
upload file using inputstream in GAE java
I am trying to upload file to google sites and am obtaining the stream using apache commons file upload.
I get the input stream as under
InputStream is = fileItem.openStream();
How will I ...
0
votes
1answer
574 views
How can I find the encoding of a FileItemStream returned by FileItemIterator?
I use Apache Commons FileUpload to receive uploaded files in a Servlet, as described at http://code.google.com/appengine/kb/java.html#fileforms
ServletFileUpload upload = new ...