zoukankan      html  css  js  c++  java
  • IntelliJ IDEA创建文件时自动填入作者时间 定制格式

    IntelliJ IDEA创建文件时自动填入作者时间 定制格式

    学习了:https://blog.csdn.net/Hi_Boy_/article/details/78205483

    学习了:http://www.iteye.com/problems/98833

    用的时velocity模板,可以花样定制;

    在Editor>File and Code Templates > Includes TAB页面

    #set($str = "") 
    #set($stringClass=$str.getClass()) 
    #set($localeClass=$stringClass.forName("java.util.Locale")) 
    
    #set($date=$stringClass.forName("java.util.Date").newInstance()) 
    #set($locale=$localeClass.getConstructor($stringClass).newInstance("en_US")) 
    #set($dateFormat=$stringClass.forName("java.text.SimpleDateFormat").getConstructor($stringClass, $localeClass).newInstance("yyyy-MM-dd HH:mm", $locale)) 
    #set($fdate=$dateFormat.format($date)) 
    
    /** 
    * 
    * @author : stono 
    * @date : ${fdate}  
    */ 
  • 相关阅读:
    body test
    menu
    Toolbutton test itk_component
    grid pack
    double inherit
    set font
    Activity test itk_component
    Activity test no class
    按键驱动调试总结
    system.img解包打包的方法
  • 原文地址:https://www.cnblogs.com/stono/p/9054523.html
Copyright © 2011-2022 走看看