我不知道如何使用谷歌应用引擎保存和读取数据。此代码无法编译,但应该让您了解我想要做什么。我似乎无法弄清楚的唯一一件事是如何从字符串创建我自己的密钥......
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");
}
任何帮助都会非常感谢!