lang="en-US"> Downloading And Uploading Data on Google App Engine Using Java Application - Knoldus Blogs
Site icon Knoldus Blogs

Downloading And Uploading Data on Google App Engine Using Java Application

Reading Time: 3 minutes

We need to download data as a CSV from the app engine data store. This would help us get the data back from the app engine, just in case you want to move away or update from the data store.

We’ll go through a step by step example for using this tool with a Java application.

1. Download Google App Engine SDK for Python from here.
Unzip this file. Place it in your path. For Linux users.

2. Now you have to set remote servlet with our Java application with which would be able to communicate with the app engine remotely. The following needs to be set up in your web.xml

Deploy your application to the app engine.

3. Now we are going to use appcfg.py to generate a configuration file:

Once you execute this command, after the necessary authentication the following file is generated


4. It would create configuration for all entities. Replace these lines:

with these

5. Now the next step is for downloading data.

It will asked to provide email and password credentials.

There’s now a CSV file named data.csv in our directory, with autogenerated bulkloader files.
Open CSV file in text mode. You can make changes in CSV file by using text editor.

6. Now for uploading data.

The bulkloader took care of generating a mostly-finished configuration file for us, in a format that ensures the data we download can be re-uploaded again without loss of fidelity.

Exit mobile version