How do I convert day of the year to date?
Category: java.util, viewed: 1097 time(s).
package org.kodejava.example.util; import java.util.Calendar; public class DayOfYearToDate { public static void main(String[] args) { // // In the example we want to get the date value of the specified day of // the year. Using the calendar object we can define our calendar for // a specific day of the year. // int dayOfYear = 112; Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.DAY_OF_YEAR, dayOfYear); System.out.println("Day of year " + dayOfYear + " = " + calendar.getTime()); // // If you want to get the date for a specific day of year and for a // specific year, you can also pass the year information to the calendar // object. // int year = 2004; calendar.set(Calendar.YEAR, year); System.out.println("Day of year " + dayOfYear + " in year " + year + " = " + calendar.getTime()); } } |
And here is an example result of the code above:
Day of year 112 = Sun Apr 22 16:53:03 GMT+07:00 2007 Day of year 112 in year 2004 = Wed Apr 21 16:53:03 GMT+07:00 2004
Can't find what you are looking for? Join our FORUMS and ask some questions!
Related Examples
- How do I convert LinkedList to array?
- How do I get all available timezones?
- How do I get currency symbol?
- How do I sort items in a Set?
- How do I sort items of an ArrayList?
- How do I sort array values in case insensitive order?
- How do I sort array values in descending order?
- How do I convert milliseconds value to date?
- How do I split a string using Scanner class?
- How do I read file using Scanner class?
- How do I read / write data in Windows registry?
- How do I read user input from console using Scanner class?
- How do I use ResourceBundle for i18n?
- How do I convert time between timezone?
- How do I set a default Locale?
- How do I remove duplicate element from array?
- How do I convert array to Set?
- How do I use the HashMap class?
- How do I generate a random array of numbers?
- How do I create a queue using LinkedList class?
Most Viewed Examples
Latest Code Examples
Categories
100 Top & Latest
Latest Jobs
Blog Entries
Forums Entries
- Google Chrome
- Re: Importing and scanning the text
- Re: What Java books have you read?
- Re: How to create exe file
- How to create exe file
- Re: What Java books have you read?
- Infix expression
- Importing and scanning the text
- Re: I want to reduce the size of a JPG image
- MOVED: I want to reduce the size of a JPG image
