zoukankan      html  css  js  c++  java
  • 修改Eclipse注释里的${Date}变量格式

    1.eclipse3.3里${date}日期格式为:
    Java代码 复制代码
    1. Jan 8, 2008  

    不是很习惯,如果想改变这种格式,比如想改为:
    Java代码 复制代码
    1. 2008-1-8  
    这样的格式,则可以通过下面的方式

    2.从http://wiki.eclipse.org/index.php/CVS_Howto下载eclipse的源码,主要下载org.eclipse.text包下的类

    3.找到org.eclipse.jface.text.templates.GlobalTemplateVariables这个类,然后打开进行修改。找到代码:
    Java代码 复制代码
    1.   
    2. public static class Date extends SimpleTemplateVariableResolver {   
    3.         /**
    4.           * Creates a new date variable
    5.           */  
    6.         public Date() {   
    7.             super("date", TextTemplateMessages.getString("GlobalVariables.variable.description.date")); //$NON-NLS-1$ //$NON-NLS-2$   
    8.          }   
    9.         protected String resolve(TemplateContext context) {   
    10.             return DateFormat.getDateInstance().format(new java.util.Date());   
    11.          }   
    12.      }  


    然后修改为:

    Java代码 复制代码
    1.   
    2. public static class Date extends SimpleTemplateVariableResolver {   
    3.         /**
    4.           * Creates a new date variable
    5.           */  
    6.         public Date() {   
    7.             super("date", TextTemplateMessages.getString("GlobalVariables.variable.description.date")); //$NON-NLS-1$ //$NON-NLS-2$   
    8.          }   
    9.         protected String resolve(TemplateContext context) {   
    10. //           return DateFormat.getDateInstance().format(new java.util.Date());   
    11.             final SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");     
    12.             return df.format(new java.util.Date());     
    13.          }   
    14.      }  



    然后再将其重新编译打包即可。
    最后覆盖掉eclipse\plugins下的org.eclipse.text_3.3.0.v20070606-0010.jar这个jar包(org.eclipse.text_XXXX.jar包),只是日期不同而已。
    转载:http://ttitfly.javaeye.com/blog/154044
    类别:Eclipse 查看评论
  • 相关阅读:
    jacob使用入门及问题解析
    java通过jacob来读取word转换为htm格式
    Java操作Microsoft Word之jacob
    将一个项目导入到另一个项目里
    N个富文本编辑器/基于Web的HTML编辑器
    VirtualBox虚拟机网络设置(四种方式)
    (重置adb.exe)android关于The connection to adb is down, and a severe error has occured.这个问题的解决办法
    对java3d的位置理解
    作为Web开发人员,我为什么喜欢Google Chrome浏览器
    非阻塞同步机制与CAS操作
  • 原文地址:https://www.cnblogs.com/dorothychai/p/2268222.html
Copyright © 2011-2022 走看看