The Python SDK has a bulk uploader tool which you can use, Unfortunately, it's not currently available for Java. If you're familiar with Python or willing to learn the little that's needed, you can use the bulk loader script to import data into your Java applications. Details here: http://code.google.com/appengine/docs/python/tools/uploadingdata.html
<http://code.google.com/appengine/docs/python/tools/uploadingdata.html>If you have a smaller number of entities, you may be able to get by with setting up a simple POST handler and writing a script to hit this handler with your data in the request body, but this won't be efficient for a larger number of entities. - Jason On Mon, Sep 21, 2009 at 4:32 AM, Pasin <[email protected]> wrote: > > If I have some static data that I would like to populate into the data > storage (for query), what is the best way to do this? > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en -~----------~----~----~----~------~----~------~--~---
