How to Convert JavaScript Date to Date in Java?

前端 未结 6 1283
暗喜
暗喜 2020-12-08 13:19

I need to convert JsDate to java.util.Date. I searched but I couldn\'t find anything. So could you help me with this problem?

Edit:

6条回答
  •  春和景丽
    2020-12-08 13:55

    I would suggest using the DateFormat parse method (doc can be found here). It can parse a string representation of a date and return a java.util.Date.

提交回复
热议问题