安卓里面,如果要上传Date类型,有以下步骤:
1、new Date(millis); 获取Date数,结果如:Wed Oct 14 16:08:20 GMT+08:00 2020
2、如果传到某些后台,是会返回400的。这个时候去掉一个冒号:如 Wed Oct 14 16:00:38 GMT+0800 2020
成功!
3、通过以下方式转换:
Date date =new Date(); String dataString=date.toString(); SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss 'GMT'Z yyyy", Locale.ENGLISH); dataString = sdf.format(date);