Subtract hours from current date using Calendar.add method : Calendar Date « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » Calendar DateScreenshots 
Subtract hours from current date using Calendar.add method
     

import java.util.Calendar;

public class Main {

  public static void main(String[] args) {
    Calendar now = Calendar.getInstance();
    System.out.println("Current Date : " (now.get(Calendar.MONTH1"-"
        + now.get(Calendar.DATE"-" + now.get(Calendar.YEAR));
    System.out.println("Current time : " + now.get(Calendar.HOUR_OF_DAY":"
        + now.get(Calendar.MINUTE":" + now.get(Calendar.SECOND));

    now = Calendar.getInstance();
    now.add(Calendar.HOUR, -3);
    System.out.println("Time before 3 hours : " + now.get(Calendar.HOUR_OF_DAY":"
        + now.get(Calendar.MINUTE":" + now.get(Calendar.SECOND));
  }
}

   
    
    
    
    
  
Related examples in the same category
1. Create a Date object using the Calendar class
2. When does the UNIX date get into troubleWhen does the UNIX date get into trouble
3. Trivial class to show use of Date and Calendar objectsTrivial class to show use of Date and Calendar objects
4. Convert longs (time_t in UNIX terminology) to seconds
5. Show use of Calendar objectsShow use of Calendar objects
6. How quickly can you press return
7. Easter - compute the day on which Easter fallsEaster - compute the day on which Easter falls
8. Show use of Calendar get() method with various parameters
9. TimeComputation for processing sqrt and Input and Output operations.
10. Bean to display a month calendar in a JPanelBean to display a month calendar in a JPanel
11. Show some date uses 1
12. Show dates before 1970
13. Compare Dates
14. Compare File Dates
15. If a date is after another date
16. If a date is before another date
17. Compute days between 2 dates
18. Show some calendar calculations
19. The best way to format a date/time is to use
20. Create SimpleDateFormats from a string read from a file
21. DateCalAdd -- compute the difference between two dates
22. Show some date uses
23. Calendar DemoCalendar Demo
24. DateDiff -- compute the difference between two dates
25. DateAdd -- compute the difference between two dates
26. Increment and Decrement a Date Using the Calendar Class
27. Increment and Decrement Months Using the Calendar Class
28. Add or subtract days to current date using Java Calendar
29. Subtract days from current date using Calendar.add method
30. Add hours to current date using Calendar.add method
31. Add minutes to current date using Calendar.add method
32. Subtract minutes from current date using Calendar.add method
33. Add months to current date using Calendar.add method
34. Subtract months from current date using Calendar.add method
35. Add seconds to current date using Calendar.add method
36. Subtract seconds from current time using Calendar.add method
37. Add week to current date using Calendar.add method
38. Add hours, minutes or seconds to a date
39. Subtract week from current date
40. Add year to current date using Calendar.add method
41. Add 10 months to the calendar
42. Subtract 1 year from the calendar
43. Subtract year from current date
44. Calendar adjust date automatically
45. Display Day of Week using Java Calendar
46. Display Month of year using Java Calendar
47. Display full date time
48. Get a List of Month Names
49. Get current date, year and month
50. Get Week of month and year using Java Calendar
51. Get the number of days in that month
52. Get the current month name
53. Get day, month, year value from the current date
54. Convert day of the year to date
55. Pass the year information to the calendar object
56. Get the last date of a month
57. Convert day of year to day of month
58. Determine the day of the week
59. Set with GregorianCalendar.YEAR, MONTH and DATE
60. Determine if an hour is between an interval
61. Parse a String to obtain a Date/GregorianCalendar object
62. Try month in a leap year
63. Determining If a Year Is a Leap Year
64. Determining the Day-of-Week for a Particular Date
65. Subtract 30 days from the calendar
66. Date Format Test Date Format Test
67. Date and time with month
68. Date and time with day and month fully spelled-out
69. Formatting the Time Using a Custom Format
70. Convert string date to long value
71. Display date with a short day and month name
72. Convert Date to String
73. Validate a date Using DateFormat
74. Get the day name
75. Use the SimpleDateFormat from the java.text package
76. Formatting date with full day and month name and show time up to milliseconds with AM/PM
77. Getting the Current Time
78. Output current time: %tc
79. Swing: Date Time EditorSwing: Date Time Editor
80. Get day of week
81. Convert milliseconds value to date
82. Calculate the age
83. Format a duration in ms into a string as "Days,Hours,minutes and seconds"
84. Formatting Symbols for SimpleDateFormat
85. Express a duration in term of HH:MM:SS
86. Match DateMatch Date
87. Checks if two calendar objects represent the same local time.
88. Checks if two date objects are on the same day ignoring time
89. Checks if two date objects represent the same instant in time
90. Calendar Comparator
91. Calendar To String
92. Formatter that caches formatted date information
93. Date Format Cache.
94. Date and time formatting utilities and constants.
95. Formatting dates into Strings.
96. Monitored GregorianCalendar
97. RFC date format
98. Utilities for java.util.Date
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.