gpt4 book ai didi

eclipse - 如何设置 Eclipse 日期变量格式?

转载 作者:搜寻专家 更新时间:2023-11-01 03:54:45 25 4
gpt4 key购买 nike

如何设置可在 Eclipse 模板中使用的 ${date} 变量的格式?

最佳答案

2016 年 2 月更新:bug 75981正式修复!
参见 Jminianswer below

enter image description here


2015 年 7 月更新,6 年后:

下面提到的错误似乎已在 Eclipse 4.x 中修复。
Eric Wang comments below :

@date ${id:date('YYYY-MMM-dd')} ${time} 

this give me English datetime format in eclipse 4.


原答案 2009 Eclipse 3.x

啊!为此存在一个长期存在的错误:bug 75981

The ${date} variable could be enhanced to accept an argument (similar to other parameterizations added in 3.3M1), e.g. ${d:date(format)}, where format is a pattern for SimpleDateFormat.

唯一的选择是修改包 org.eclipse.jface.text 中的类 SimpleTemplateVariableResolver(如 this thread 中所述)。模板。 (你在这里有一个 example of such an extension )。

thread mentions您可以找到类(class)的来源。

\eclipse\plugins\org.eclipse.platform.source_3.1.0\src\org.eclipse.text_3.1.0\src.zip

例子:

public static class Date extends SimpleTemplateVariableResolver {
/**
* Creates a new date variable
*/
public Date() {
super("date", TextTemplateMessages.getString("GlobalVariables.variable.description.date")); //$NON-NLS-1$ //$NON-NLS-2$ }

protected String resolve(TemplateContext context) {
//return DateFormat.getDateInstance().format(new java.util.Date());
DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
return df.format(new java.util.Date()); } }

关于eclipse - 如何设置 Eclipse 日期变量格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11712531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com