Convert into java.sql.Time (or into java.util.Calendar) : Date Time Timestamp « Database SQL JDBC « Java

Home
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 » Database SQL JDBC » Date Time TimestampScreenshots 
Convert into java.sql.Time (or into java.util.Calendar)
   

import java.sql.Time;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

/**
 * Provides methods helpful in making object conversions not provided for by the
 * Sun or MyFaces distributions.
 
 @author <a href="mailto:jholtzman@berkeley.edu">Josh Holtzman</a>
 
 */
public class ConversionUtil {

  /**
   * convert into java.sql.Time (or into java.util.Calendar
   
   @param date
   *          The date containing the time.
   @param am
   *          Whether this should be am (true) or pm (false)
   @return
   */
  public static Time convertDateToTime(Date date, boolean am) {
    if (date == null) {
      return null;
    }

    Calendar cal = new GregorianCalendar();
    cal.setTime(date);
    int hourOfDay = cal.get(Calendar.HOUR_OF_DAY);

    if (am) {
      // Check to make sure that the hours are indeed am hours
      if (hourOfDay > 11) {
        cal.set(Calendar.HOUR_OF_DAY, hourOfDay - 12);
        date.setTime(cal.getTimeInMillis());
      }
    else {
      // Check to make sure that the hours are indeed pm hours
      if (cal.get(Calendar.HOUR_OF_DAY11) {
        cal.set(Calendar.HOUR_OF_DAY, hourOfDay + 12);
        date.setTime(cal.getTimeInMillis());
      }
    }
    return new Time(date.getTime());
  }

}

   
    
    
  
Related examples in the same category
1.Convert java.sql.Timestamp to long for easy compare
2.Get Date From MySql
3.Get java.sql.Timestamp fro current time
4.Get date from Oracle
5.Insert Date, time and date time data to Oracle
6.Construct java.sql.Timestamp from string
7.Demo PreparedStatement Set Time
8.Demo PreparedStatement Set Timestamp
9.Demo PreparedStatement Set Date
10.Compare two times
11.Convert an Object to a DateTime, without an Exception
12.Convert an Object to a Timestamp, without an Exception
13.Convert an Object to a java.sql.Time
14.Timestamp parse
15.Parse date and time
16.convert Strings to Dates and Timestamps and vice versa.
17.A method to get the current date and time to use in a timestamp
18.A method to get the current date to use in a timestamp
19.Get today's Timestamp
20.Convert String To Timestamp
21.Format Timestamp
22.Convert a timestamp (= millisecs) to a concise string
23.Get Date stamp
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.