openHAB 两个字符串到日期时间

openHAB two Strings to DateTime

我有两个字符串变量(一个有日期,另一个有时间), 如何从这两个 String 变量创建 DateTime? 使用 PlusMintues PlusDay 的目的 ...

你能帮帮我吗?

我已经试过了,很有效,

val SimpleDateFormat dateFormatter = new SimpleDateFormat( "yyyy-MM-dd HH:mm" )        
val dateTimeString = dateValue + " " + timeValue
val String dateTimeValue = dateFormatter.format(new Date(dateTimeString))                
val DateTime origStartDate = new DateTime(dateFormatter.parse(dateTimeValue))