我在尝试转换日期时收到未报告的异常ParseExpcetion错误。这是我的代码得到错误,我相信我必须使用try和catch块,但我不确定如何在这里使用它。
{{1}}
答案 0 :(得分:0)
你忘了抓住引发的异常。在这样的try-catch中包装抛出异常的代码(这里有一个好的IDE帮助):
DateFormat inputFormat = new SimpleDateFormat("MM/dd/yy");
DateFormat outputFormat = new SimpleDateFormat("dd.MM.yy");
try{
Date date = inputFormat.parse(input);
String formattedDate = outputFormat.format(date);
}
catch(ParseException ex){
//Do something
}
答案 1 :(得分:0)
您需要捕获异常,并希望提供不同的输出消息。 E.g:
imageView