vote up 1 vote down star

I need to automate getting the compilation date in a specific format into one Java Source file, like the C compilers DATE define, How?

flag

78% accept rate
Why do you need to do this? – Eduard Wirch Nov 3 at 8:29
Version control. Need to know from the jar file when it was built. – Ayman Nov 3 at 9:11
In that case do consider putting it into the jar manifest – Duncan McGregor Nov 3 at 9:22

4 Answers

vote up 7 vote down check

The standard Java compiler has no way of doing this (I don't think C compilers do either - I'm guessing that it is the pre-processor that gives DATE, FILE etc)

You'll have to write a source file with the date as a string into it - look at ant's copy task with a filter

<copy file="pre-src/Version.java" toFile="src/Version.java">
  <filterset>
    <filter token="DATE" value="${TODAY}"/>
  </filterset>
</copy>

then in your source

public class Version {
    public static final String date = "@DATE@";
}

To get the date in various formats into the ant property TODAY look at the Tstamp task.

link|flag
You need to call the <tstamp/> task before using ${TODAY}. Otherwise, it works like a charm. – Ayman Nov 3 at 9:24
vote up 1 vote down

Have you considered annotation processors? You can run them before compilation with javac and then manually add date to the file if there was certain annotation.

link|flag
vote up 1 vote down

You could do this using aspectj compile time weaving to initialise a variable (you would obviously want to do the assignment by converting the date in your aspect to a string and then have your code parse that string).

Of course there is also nothing stopping you actually using a c pre-processor on a java file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.