在MapReduce的,在的MapReduce給錯誤轉換字符串日期
public static class Reduce1 extends MapReduceBase implements
Reducer<Text, Text, Text, Text> {
public void reduce(input,input,output,output) throws IOException {
String fromdate="2014-03-19 20:20:20";
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date startDate=sdf.parse(fromdate);
}
}
減速類它給在編譯時
沒有報告異常java.text.ParseException follwing錯誤;必須被捕獲或 宣稱拋出
任何人都知道解決方案,爲什麼這個錯誤即將到來。
在此先感謝
'ParseException'是經過檢查的異常,所以你需要趕上已經或者扔掉它通過錯誤信息表示... – Reimeus