I have two dates of type String, the first in the format "yyyy.MM.dd" , the second "HH:mm"
They are converted to type Date using SimpleDateFormat ;
So, I need to put them together, that is, the result would be "yyyy.MM.dd HH:mm"
Are there any other options how to fold them, except
date.setHours(); date.setMinutes();