在使用应用程序引擎时,我在实体类中使用文本数据类型存储超过 500 个字符的值时遇到问题。由于 com.google.appengine.api.datastore.Text 在我的 android 活动类中不可用,如何在我的 android 类中创建 Text 数据类型?
我在定义我的实体类时尝试使用下面的代码,但是当我尝试在我的 android 活动类中使用 get/set 方法时,我仍然得到非法参数异常。
private Text storyContent;
public String getStoryContent() {return storyContent.getValue();}
public void setStoryContent(String storyContentString) {
this.storyContent=new Text(storyContentString);
}