- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我会在表格中滑动所有单元格,但我没有解决。我的代码是:
SpreadsheetService service = new SpreadsheetService("MyApp");
try{
URL SPREADSHEET_URL = new URL("https://spreadsheets.google.com/feeds/worksheets/1-8ATDLTqmzo4QCQijeJ_swZAcmsh/public/full");
SpreadsheetFeed feed = service.getFeed(SPREADSHEET_URL,SpreadsheetFeed.class);
List<SpreadsheetEntry> spreadsheets = feed.getEntries();
if (spreadsheets.size() == 0){
System.out.println("NO SPREADSHEET");
}
for(int i = 0; i<spreadsheets.size(); i++){
System.out.println(spreadsheets.get(i).getTitle().getPlainText());
}
List<WorksheetEntry> worksheets = spreadsheets.get(0).getWorksheets();
for (int j=0; j<worksheets.size(); j++){
System.out.println(worksheets.get(j).getTitle().getPlainText());
URL listFeedUrl = worksheets.get(j).getListFeedUrl();
ListFeed listFeed = service.getFeed(listFeedUrl,ListFeed.class);
}
最后一行报告的错误:
ListFeed listFeed = service.getFeed(listFeedUrl,ListFeed.class);
当我编译我的代码时有这个错误:
Exception in thread "main" java.lang.ClassCastException: com.google.gdata.data.TextContent cannot be cast to com.google.gdata.data.OutOfLineContent
at com.google.gdata.data.spreadsheet.WorksheetEntry.getFeedUrlString(WorksheetEntry.java:129)
at com.google.gdata.data.spreadsheet.WorksheetEntry.getListFeedUrl(WorksheetEntry.java:98)
at it.unical.mat.google_data.MySpreadsheetIntegration.main(MySpreadsheetIntegration.java:40)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
导入使用:
import android.support.multidex.MultiDex;
import com.google.gdata.client.authn.oauth.*;
import com.google.gdata.client.spreadsheet.*;
import com.google.gdata.data.*;
import com.google.gdata.data.batch.*;
import com.google.gdata.data.spreadsheet.*;
import com.google.gdata.util.*;
import java.io.IOException;
import java.net.*;
import java.util.*;
import java.util.jar.Attributes;
最佳答案
1. 就像您看到调试控制台一样,Intellij Ide 的作用是调用反射。如果您尝试使用另一个 IDE 执行此操作,可能会有这种可能性。(可能是 ecllipse)。正如我所说从方法中搜索出这部分代码,这是导致异常的根本原因
com.google.gdata.data.spreadsheet.WorksheetEntry.getFeedUrlString(WorksheetEntry.java:129
private String getFeedUrlString(String linkRelKind) {
Version spreadsheetVersion = state.service.getProtocolVersion();
if (spreadsheetVersion.isCompatible(SpreadsheetService.Versions.V1)) {
Link feedLink = this.getLink(linkRelKind, Link.Type.ATOM);
return feedLink.getHref();
} else { // must be SpreadsheetService.Versions.V2; only 2 versions for now
// List or Cells feed Url?
if (linkRelKind.equals(Namespaces.LIST_LINK_REL)) {
// the list feed is stored as a <content> tag
return ((OutOfLineContent)(this.getContent())).getUri();
} else { // it must be Namespaces.CELLS_LINK_REL
// the cells feed is stored in the <link> tag
Link feedLink = this.getLink(linkRelKind, Link.Type.ATOM);
return feedLink.getHref();
}
}
}
下一个可能的解决方案可能是在编译期间
ListFeed listFeed = service.getFeed(listFeedUrl,ListFeed.class);
在上一行中,您试图保存对象,该对象从您的服务中获取返回与特定提要 URL 关联的提要。
只需放置 try catch block 以从 url 获取列表提要并在可能的情况下处理异常。
try{
service.getFeed(listFeedUrl,ListFeed.class);
}
catch(IOException e){
e.printStackTrace();
}
catch(ParseException e1){
e1.printStackTrace();
}
catch(ResourceNotFoundException e2){
e2.printStackTrace();
}
catch(ServiceException e3){
e3.printStackTrace();
}
请同时调试该行的内联值。
希望对您有所帮助。谢谢
关于java.lang.ClassCastException : com. google.gdata.data.TextContent 无法转换为 com.google.gdata.data.OutOfLineContent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33122866/
我想我在这里遗漏了一些明显流血的东西,如果有任何帮助,我将不胜感激。提前致谢。 我有以下代码,但是当我运行它时它中断并说 .textContent 不能应用于 queryString 因为 query
我有一个这样的html: My title Here is a text and one paragraph Another paragraph
我的磁盘上有一个 xml 文件,其中包含: _gos='monster.gostats.com';_goa=458628; _got=5;_goi
这个问题已经有答案了: JavaScript closure inside loops – simple practical example (45 个回答) 已关闭 4 年前。 我正在尝试 menu
我有一个表,我想在其中提取事件项目的文本。我使用以下代码执行此操作: var addedWorkout = $("#custDropDownMenuA").find(".dropdown-it
这是我的代码: var text1 = "↵,bla bla";//here text1 has value text1 = text1.textContent;//here it is undefi
我正在尝试创建动画 Logo 灵感:http://codepen.io/pavlunya/pen/OPmVem 当我使用 document.getElementById 而不是 document.ge
var container = document.getElementById("grid-container"); var btn = document.getElementById("btn");
我正在尝试获取出现在父 div 标签上方的 h3 标签的 textContent。代码重复,添加 id 不是 h3 标签的选项。希望在纯 Javascript 中做到这一点。我的 html 目前是..
首先,我正在为 JavaScript 创建一个库,但我不能使用 jQuery。我正在尝试获取 HTML 元素的文本内容,但不包含其子元素的文本内容。 属性 innerText 和 textConten
我正在执行 element.textContent = unescapedData 以将未转义的用户输入放在网站上。攻击者有什么办法可以利用它来做坏事吗?如果它有以下 CSS 吗? max-width
我想使用 JavaScript 设置元素的文本内容。如果我这样做: var el = document.getElementById('my-element') el.textContent = '&
下面是我尝试用来从填充有多个 元素的元素内部获取日期的 JavaScript 代码。第 9 个元素包含 YYYY-MM-DD 格式的日期。当我使用这段代码时,它似乎没有将元素转换为 JavaScrip
我想使用一个使用 JavaScript 的脚本来更新网站页脚中的元素。但是,h3 元素没有更新。 我已经尝试过textContent not updating HTML ,但我无法在那里找到我的解决方
我最近在玩耍,注意到一些涉及 .textContent 的奇怪行为属性(property)。 // I understand that .innerHTML should be used here.
我不知道为什么会这样,但我的替换不起作用。考虑到我的语法是正确的,这有点不寻常。 info.textContent.replace('Title', "replaced"); 其中 info 是存储元
需要: 当按钮的 textContent 溢出它的按钮宽度时,我需要一个触发器。 问题: 是否有任何简洁/巧妙的方法来检测 textContent 何时溢出其父项? Codepen Example 更
早上好, 我希望有人能帮我解决这个看似简单的问题。我不明白为什么我的 textContent 或 innerHTML 不会更新我的 DOM。它在我的控制台中显示它已经改变,但由于某种原因我无法理解为什
我向 mozilla 目录提交了一个 Firefox 插件,但由于以下原因被拒绝: item.innerHTML = '' + ''
给定 firstsecond 和 span + span::before { content: ', '; } 我想在 JavaScript 中检索渲染的字符串 'first, secondary
我是一名优秀的程序员,十分优秀!