views:

51

answers:

2

i can use 'csv' file to upload to gae ,

and i want to know , can any other data format do this,

thanks

A: 

You can also use XML files to upload data to your datastore as described here.

tomlog
+1  A: 

The new bulkloader supports delimited (CSV, TSV etc) and XML formats at a minimum, but much like the old bulkloader, it's possible to support any format you wish. Here's my post on writing custom importers for the old bulkloader for a reference.

Nick Johnson