因此,我正在修改開放源代碼Google I/O開源應用程序(2010)之一,嘗試使用自定義Google電子表格同步應用程序時出現以下錯誤,同一標題不同的數據(出現同步精細與默認谷歌電子表格)錯誤解析時間戳
「同步錯誤:問題解析時間戳:java.text.ParseException:無法解析的日期:‘空2010 10:45 AM -0700’
這是的投擲Java代碼錯誤
private static long parseTime(String date, String time) throws HandlerException {
final String composed = String.format("%s 2010 %s -0700", date, time);
try {
return sTimeFormat.parse(composed).getTime();
} catch (java.text.ParseException e) {
throw new HandlerException("Problem parsing timestamp", e);
}
}
這裏是鏈接s到它試圖解析信息(凌動): 我的數據 https://spreadsheets.google.com/feeds/worksheets/0AmvmSNjQXtJFdE1lTlFxVXZCLUN0OFpqa3oyM2d4bEE/public/basic
谷歌數據 http://spreadsheets.google.com/feeds/worksheets/twd6syM493oFqIFWeIm8qGw/public/basic「
我想不通爲什麼我得到這個錯誤。任何幫助將不勝感激。
這是我第一次想到,應用程序讀入的日期列中,但沒有一個是空的。 – user1113888 2012-03-14 16:35:52