gpt4 book ai didi

java - 使用 google api 读取 google 文本文档时出现问题

转载 作者:行者123 更新时间:2023-12-01 15:38:25 25 4
gpt4 key购买 nike

我正在尝试使用以下代码来读取 Google 文本文档。但返回的值是一个带有垃圾字符的流,而不是真正的内容。我怎样才能解决这个问题。

for (DocumentListEntry entry : resultFeed.getEntries()) {  
String docId = entry.getDocId();
String docType = entry.getType();
URL exportUrl = new URL("https://docs.google.com/feeds/download/"
+ docType
+ "s/Export?docID="
+ docId
+ "&exportFormat=doc");

MediaContent mc = new MediaContent();
mc.setUri(exportUrl.toString());

MediaSource ms = client.getMedia(mc);
InputStream inStream = null;


try {
inStream = ms.getInputStream();
int c;
while ((c = inStream.read()) != -1) {
System.out.print((char)c);
}
} finally {
if (inStream != null) {
inStream.close();
}
}
}

最佳答案

快速阅读 the documentation ,看起来您正在读取 Microsoft Word 编码文档的原始字节。

尝试将 &exportFormat=doc 更改为 htmltxt 并查看输出是否更有意义。

关于java - 使用 google api 读取 google 文本文档时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8490713/

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