代码之家  ›  专栏  ›  技术社区  ›  oshai

如何在蚂蚁中设置时间属性

  •  1
  • oshai  · 技术社区  · 14 年前

    我想要一个具有特定格式的当前时间的属性: 在java ant build.xml中如何做到这一点?

    3 回复  |  直到 14 年前
        1
  •  6
  •   Mia Clarke    14 年前

    你用的是 TStamp task .

    <tstamp>
      <format property="TODAY"
              pattern="yyyyMMddhhmm"/>
    </tstamp>
    
        2
  •  4
  •   Colin Hebert    14 年前

    你可以使用 TStamp task

    例如:

    <tstamp>
        <format property="propertyName" pattern="yyyyMMddhhmm" />
    </tstamp>
    
        3
  •  1
  •   oshai    14 年前

    找到解决方案:

    <target name="timestamp2">
            <tstamp>
                <format property="current.time" pattern="yyyyMMd_hhmmss" />
            </tstamp>
    
            <echo message="current time: ${current.time}" />
    </target>