我想運行這個小代碼來返回一個八位integer
作爲搜索函數稍後在for-loop
中使用。問題是它不會返回任何值searchDateToday
。我錯過了什麼嗎?Android:日曆不返回值?
final Calendar cal = Calendar.getInstance();
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
DateToday = formatter.format(cal.getTime()); // YYYYMMDD form -
// Example: 20111010
// = October 10,
// 2011
int searchDateToday = Integer.parseInt(DateToday);
是否打印'DateToday'?是否拋出了一些異常? – Reno