- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 Google Tasks API 返回值,例如任务标题、任务备注和任务截止日期。
当我尝试将截止日期 ( stored as RFC 3339) 输出为字符串时,我得到了 java.lang.IllegalArgumentException
。
我正在尝试使用 SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
进行此转换。
我的猜测是 SimpleDateFormat
不是可行的方法,但我尝试过的所有其他转换都失败了。我对使用 Joda ISODateFormat
持开放态度,但即使那样也行不通。我已经包含了相关的代码 fragment 。
我的任务(调用项)类定义是:
import com.google.api.client.util.DateTime;
public class Item {
Long id;
String title;
String description;
String extId1;
Integer status;
DateTime dateDue;
DateTime dateLastEdit;
DateTime dateCompleted;
Item parent;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setNotes(String description) {
this.description = description;
}
public String getExtId1() {
return extId1;
}
public void setExtId1(String extId1) {
this.extId1 = extId1;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public DateTime getDateDue() {
return dateDue;
}
public void setDateDue(DateTime dateDue) {
this.dateDue = dateDue;
}
public DateTime getDateLastEdit() {
return dateLastEdit;
}
public void setDateLastEdit(DateTime dateLastEdit) {
this.dateLastEdit = dateLastEdit;
}
public DateTime getDateCompleted() {
return dateCompleted;
}
public void setDateCompleted(DateTime dateCompleted) {
this.dateCompleted = dateCompleted;
}
public Item getParent() {
return parent;
}
public void setParent(Item parent) {
this.parent = parent;
}
}
为了看到这个错误,我演示了 doInBackground 方法,我尝试输出返回日期:
@Override
protected List<Item> doInBackground(Void... arg0) {
List<Item> itemList = new ArrayList<Item>();
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
Log.v(TAG, "Start doInBackground...");
try {
List<String> result = new ArrayList<String>();
com.google.api.services.tasks.Tasks.TasksOperations.List listRequest = service.tasks().list("@default");
listRequest.setFields("items/title,items/notes,items/due");
List<Task> tasks = listRequest.execute().getItems();
if (tasks != null) {
for (Task task : tasks) {
result.add(task.getTitle());
Item item = new Item();
item.setTitle(task.getTitle());
item.setNotes(task.getNotes());
DateTime due = task.getDue();
item.setDateDue(due);
Log.v(TAG, "Due date string: " + formatter.format(due));
itemList.add(item);
}
} else {
Log.v(TAG, "End doInBackground with no tasks");
result.add("No tasks.");
}
Log.v(TAG, "End doInBackground with tasks received");
return itemList;
} catch (IOException e) {
Log.v(TAG, "End doInBackground with IOException...");
tasksSample.handleGoogleException(e);
Item item = new Item();
item.setTitle(e.getMessage());
itemList.add(item);
return itemList;
//return Collections.singletonList(e.getMessage());
} catch (Exception e2) {
Log.v(TAG, "End doInBackground with generic exception...");
e2.printStackTrace();
Item item = new Item();
item.setTitle(e2.getMessage());
itemList.add(item);
return itemList;
} finally {
tasksSample.onRequestCompleted();
}
}
编辑:
根据要求,这里是堆栈跟踪:
[java.text.DateFormat.format(DateFormat.java:365), java.text.Format.format(Format.java:93), com.google.api.services.samples.tasks.android.AsyncLoadTasks.doInBackground(AsyncLoadTasks.java:78), com.google.api.services.samples.tasks.android.AsyncLoadTasks.doInBackground(AsyncLoadTasks.java:1), android.os.AsyncTask$2.call(AsyncTask.java:264), java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305), java.util.concurrent.FutureTask.run(FutureTask.java:137), android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:208), java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076), java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569), java.lang.Thread.run(Thread.java:856)]
这是任务资源:
{"due":"2012-07-04T00:00:00.000Z","notes":"note1","title":"test1"}
最佳答案
Google Java 客户端库辅助函数似乎是 import com.google.api.client.util.DateTime;
已经返回一个文本字符串,不需要做转换。这出乎我的意料!
关于java - 将从 Google Tasks API 返回的 Android 中的 RFC 3339 日期时间对象转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11739592/
这个问题在这里已经有了答案: Why use async and return await, when you can return Task directly? (8 个答案) 关闭 6 年前。
这个问题在这里已经有了答案: Are the days of passing const std::string & as a parameter over? (13 个答案) 关闭 8 年前。 我
我有一组标记为执行的通用任务。当任务完成时(使用 Task.WaitAny ),我将其添加到 ObservableCollection 中. 但是,问题出在 Task.WaitAny(...)行,上面
经过几个小时的努力,我在我的应用程序中发现了一个错误。我认为下面的 2 个函数具有相同的行为,但事实证明它们没有。 谁能告诉我引擎盖下到底发生了什么,以及为什么它们的行为方式不同? public as
这也与 Python 的导入机制有关,特别是与在函数内使用 import 有关。使用 Python 2.7.9 和 Fabric 1.10.0,创建以下三个文件: fabfile.py: from a
我有一个 Web API Controller (ASP.NET Core 5)。我的一些 API 是异步的,而其中一些不是。我接下来的问题是:使用 public **Task** WebApiMet
我们有类似下面的内容 List uncheckItems = new List(); for (int i = 0; i new Task(async () => await Process
我的代码没问题,但我想知道哪种风格更好,你会怎么看,我正在玩异步方法。 让我建立上下文: Parallel.ForEach(xmlAnimalList, async xml => {
这两种使用 await 的形式在功能上有什么区别吗? string x = await Task.Factory.StartNew(() => GetAnimal("feline")); Task m
我刚刚看到 3 个关于 TPL 使用的例程,它们做同样的工作;这是代码: public static void Main() { Thread.CurrentThread.Name = "Ma
考虑以下代码: public void CacheData() { Task.Run((Action)CacheExternalData); Task.Run(() => CacheE
Task> GetTaskDict() { return Task.FromResult(new Dictionary () ); } 此代码无法编译,因为我们无法在 Task> 到 Tas
我正在使用 ASP.NET 5 RC1 _MyPartial @model MyViewModel @using (Html.BeginForm())
当我尝试在 VS Code 中构建 C 任务时,它显示以下消息: 输出仅显示:The task provider for "C/C++" tasks unexpectedly provided a t
一些背景: 基本上归结为我希望能够在当前线程中“执行”任务。为什么? -我有一个任务创建程序例程,有一次我希望任务在后台任务中立即执行,而其他时候我希望使用 IOmniThreadPool 安排任务。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我试图将run-sequence添加到我的gulp工作流程中,但是每次尝试执行使用run-sequence的任务时,都会出现此错误: 任务未配置为gulp上的任务。 根据运行序列的来源,这是由以下te
此代码在VS2015中给出了编译时错误 Error CS0266 Cannot implicitly convert type 'System.Threading.Tasks.Task' to 'Sy
我正在尝试通过我的代码通过Google登出: suspend fun signOut(context: Context): Boolean = with(Dispatchers.IO) { t
谁能解释一下这两种说法的区别: Task bTask = backup.BackupCurrentDatabaseAsync() .ContinueWith(_ => CompressArch
我是一名优秀的程序员,十分优秀!