我有以下简单的代码导致RuntimeException
错误,我无法解释:
import java.text.MessageFormat
import java.util.Date
import org.apache.commons.cli._
import org.joda.time._
import org.joda.time.format.DateTimeFormat
object TestMain {
def doFormat(value: Any): String = {
val ClassOfDouble = classOf[Double]
val ClassOfDate = classOf[Date]
val ClassOfDateTime = classOf[DateTime]
val result: String = value.getClass match {
case ClassOfDouble => MessageFormat.format("{0,number,#.####################}", Array(value.asInstanceOf[DateTime]))
case ClassOfDate => MessageFormat.format("{0,date,yyyy.MM.dd}", Array(value.asInstanceOf[Date]))
case ClassOfDateTime => DateTimeFormat.forPattern("yyyy.MM.dd HH:mm:SSS").print(value.asInstanceOf[DateTime])
case _ => value.toString
}
result
}
def main(args: Array[String]): Unit = {
println(doFormat(new Date()))
}
}
...以及由此产生的运行时错误:
Exception in thread "main" java.lang.IllegalArgumentException: Cannot format given Object as a Date
at java.text.DateFormat.format(Unknown Source)
at java.text.Format.format(Unknown Source)
at java.text.MessageFormat.subformat(Unknown Source)
at java.text.MessageFormat.format(Unknown Source)
at java.text.Format.format(Unknown Source)
at java.text.MessageFormat.format(Unknown Source)
at test.TestMain$.doFormat(TestMain.scala:28)
at test.TestMain$.main(TestMain.scala:39)
at test.TestMain.main(TestMain.scala)
答案 0 :(得分:3)
这是因为您将Array
传递给format
方法。您可以直接使用Date
:
case ClassOfDate => MessageFormat.format("{0,date,yyyy.MM.dd}", value.asInstanceOf[Date])
这样,输出将是:
二〇一七年十月十七日
答案 1 :(得分:3)
您不需要使用数据包装MessageFormat.format()的第二个参数,因为它需要一个vararg。
使用Array调用令人困惑。目前还不清楚Array是vararg(Object ...)还是只是vararg(Object)的第一个参数。它使用第二个,你会遇到异常。