local env 上的日期格式与 DEV env 上的不同。
=== 英语语言环境 ===
“2035 年 1 月 23 日凌晨 3:00:00” - 本地
“1 月 23 日,35 日,凌晨 3:00:00” - DEV
=== 中文地区 ===
“2035. 1. 23 오전 3:00:00” - 本地
“35. 1. 23. 오전 3:00:00” - DEV
为什么在 DEV 上它看起来不同以及如何修复它?
local env 上的日期格式与 DEV env 上的不同。
=== 英语语言环境 ===
“2035 年 1 月 23 日凌晨 3:00:00” - 本地
“1 月 23 日,35 日,凌晨 3:00:00” - DEV
=== 中文地区 ===
“2035. 1. 23 오전 3:00:00” - 本地
“35. 1. 23. 오전 3:00:00” - DEV
为什么在 DEV 上它看起来不同以及如何修复它?
您可以使用 groovy 在 hac 中进行语言环境设置。可能是区域设置不同。日期/时间格式可以通过语言环境进行更改。您可以使用控制台 > 脚本语言在 hac 中使用以下 groovy 脚本检查语言环境设置。
import java.text.DateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
DateFormat formatter = DateFormat.getDateInstance(DateFormat.SHORT, Locale.getDefault());
String pattern = ((SimpleDateFormat)formatter).toPattern();
String localPattern = ((SimpleDateFormat)formatter).toLocalizedPattern();
print Locale.getDefault();
print "\n";
print pattern;
print "\n";
print localPattern;