最简单的读/写谷歌应用引擎的方法

时间:2012-06-10 19:06:51

标签: java string google-app-engine

我无法弄清楚如何使用谷歌应用引擎保存和读取数据。这段代码没有编译,但应该让你知道我想做什么。我似乎无法弄清楚的唯一一件事是如何从字符串中创建自己的密钥....

DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();


    Entity article = new Entity("Article", "keyThatIMadeUp");

    article.setProperty("articleHTML", "this is where the article html goes");


    datastore.put(article);
    try {
        Entity articleRetrieved = datastore.get(Key("keyThatIMadeUp"));
    }
    catch (EntityNotFoundException e) {
        System.out.println("data not found");
    }

任何帮助都会非常感谢!

2 个答案:

答案 0 :(得分:2)

Keys嵌入了他们关键的实体类型。因此,要从部件重建密钥,您需要提供实体类型的名称。在你的情况下,你正在寻找像

这样的东西
... = datastore.get(Key.from_path("Article", "keyThatIMadeUp"))

答案 1 :(得分:0)

尝试按照ndb概述进行操作。它有一个你可以遵循的简单例子。

https://developers.google.com/appengine/docs/python/ndb/overview