如何在 Smartgwt 应用程序中获取当前系统日期(仅 javascript)。我需要将日期打印为 2010 年 10 月 25 日,类似这样。目前我正在使用以下代码:
String currentDate ;
java.util.Date date = new Date();
String tempDate = date.toString();
String[] currDate = tempDate.split(" ");
currentDate = currDate[2] + " " + currDate[1] + " "
+ currDate[currDate.length - 1];
但我想如果系统/服务器的语言环境发生变化,这将不起作用。你能建议我任何方法来获取日期吗?