I need to convert new Date() to Julian date format.is there is any build in java function for this. my exact requirement is
Represents the creation date of the file in Julian date format (0YYDDD): 0 – numeric zero YY – last two digits of the year DDD – day number within the year Can be up to 7 calendar days before the date of transmission Example: 010163 = June 11, 2010
What is really looking is some thing like this
Date date=new Date();
String JulianDtae=date.someFunction()
Any help will be appreciated