gpt4 book ai didi

java - 如何从 Datastore Google Cloud 检索文本类型?

转载 作者:行者123 更新时间:2023-11-30 08:03:13 25 4
gpt4 key购买 nike

好吧,这些都是基本问题,但在网上找不到很多答案。

好的,现在,我使用这段 Java 代码插入数据存储

Text descriptionText=new Text(description);
structureEntity.setUnindexedProperty("Description",descriptionText);

Anh 这是检索代码:

Text description=(Text)structureObjectEntity.getProperty("Description");\
System.out.println(description);

现在,假设我将“We should arrive before dark.<br>I should have finished the book by Friday. <br>The roads should be less crowded today.<br><br>Source: http://www.oxfordlearnersdictionaries.com/definition/english/should?q=should”插入数据存储区

但是在检索数据时,System.out.println(description);返回 <Text: We should arrive before dark.<br>I should have finished the book by Fr...> (一些数据丢失了,数据头部有 <Text:,数据尾部有 ...),一切都搞砸了。

那么,如何从 Datastore Google Cloud 检索文本类型?

最佳答案

您需要调用getValue() 方法。如果将 Text 对象传递给 println(),它将调用 toString() 方法。 Here are the Javadocs

关于java - 如何从 Datastore Google Cloud 检索文本类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36403697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com