views:

50

answers:

1

I had created web application and deploy it in Google App Engine after I created table(entity) in Google App Engine datastore. My doubt is it possible to download the entity/database?

A: 

Yes, using the BulkLoader

Shay Erlichmen
I need some more examples,how to download data from google app engine datastore
i use this: `python2.5 appcfg.py download_data -A APP-ID --url http://APP-ID.appspot.com/remote_api --filename=datastore-$(date +%Y%m%d-%H%M).data`
sahid
In that bulkloaderlink also they explain using python.But i am using java so that i cant able to follow that example.I want some clear explanation about how download data using java in webapplication project
@user441392 Please read the entire link carefully as it describes the steps needed in order to use BulkLoader in Java. For future reference please state that you are using the Java GAE.
Shay Erlichmen
i had read and found this Tip: If you have a Java app, you can use the Python bulkloader.py toolby installing the Java version of the remote_api handler, which isincluded with the Java runtime environment. The handler servlet classis com.google.apphosting.utils.remoteapi.RemoteApiServlet.I understand i need to add the java remote api to my server app, anduse the python sdk tools on my desktop to upload and download data.I'm just confused on how to set up the remote api in my java app. I'm sorry if i'm being obtuse.i'm trying to find guidence on install the java remote_api in my app