newDate =(newDaysAdded+"/"+month+"/"+year);
SimpleDateFormat date = new SimpleDateFormat("dd/MM/yyyy");
try {
Date newDateOne = date.parse(newDate);
當我嘗試:我已經使用SimpleDateFormat創建了一個日期,我該如何轉換成字符串?
view.writeToScreen(newDateOne);
我得到的錯誤:
Incompatible types: Date cannot be converted to String.
這裏是writeToScreen方法:
void writeToScreen(String s);
從那裏,我不能變成
然而一個字符串,我試過了: String test = Date.toString(newDateOne);
任何人都可以幫忙嗎?
是不是已經在你想要的格式'newDate'?你需要什麼格式化程序? – GurV
'writeToScreen'需要一個字符串,並且您傳遞一個Date ... – assylias