Upload file on Google cloud storage using Java servlet on google app engine
Hopefully you have configured all jars and settings to run and deploy your project on google app engine using eclipse, if not then visit google app engine-->google cloud storage java api link.. https://developers.google.com/appengine/docs/java/googlestorage/overview ----------------------------------------------------------------------------- 1) index.html ------------------------------------------------------------------------------ <html> <body> <div> <form action="testStorage.do" method="post" enctype="multipart/form-data"> <p> Please write a file to test cloud storage... </p> <input type="file" name="cloudFile" /> <input type="submit" value="Write a file on cloud Storage"> </form> </div> </body> </html> ---------...
Comments
Post a Comment