What does CCYYMMDD date format mean?

前端 未结 5 966
小鲜肉
小鲜肉 2020-12-09 08:25

I want to speak to a soap service that has a date parameter which is required to be the CCYYMMDD format.

What is its definition?

5条回答
  •  暖寄归人
    2020-12-09 08:47

    It means yyyyMMdd, as in year (4 digits), month (2 digits, leading zero) and day (2 digits, leading zero).

    So the ISO 8601 date 2014-01-05 is represented as CCYYMMDD as 20140105.

提交回复
热议问题