How to Convert JavaScript Date to Date in Java?

前端 未结 6 1280
暗喜
暗喜 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:59

    JS Date -- new Date() Wed Aug 14 2019 14:54:38 GMT+0530 (India Standard Time)

    Java Date -- new Date().toISOString() "2019-08-14T09:25:50.136Z"

提交回复
热议问题