Java Date to Time toTimeString(Date date)

Here you can find the source of toTimeString(Date date)

Description

to Time String

License

Open Source License

Declaration

public static String toTimeString(Date date) 

Method Source Code


//package com.java2s;
/*/*from  w ww. ja v  a  2  s .  c  o  m*/
   Copyright 2010 Inexas. All rights reserved.
    
   Licensed under the Inexas Software License V1.0. You may not use this file 
   except in compliance with the License. You may obtain a copy of the License
   at http://www.inexas.com/ISL-V1.0.
    
   Unless required by applicable law or agreed to in writing, software distributed 
   under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
   CONDITIONS OF ANY KIND, either express or implied. See the License for the 
   specific language governing permissions and limitations under the License.
*/

import java.text.*;
import java.util.*;

public class Main {
    private final static DateFormat timeOnlyFormatter = new SimpleDateFormat("HH:mm:ss");

    public static String toTimeString(Date date) {
        return timeOnlyFormatter.format(date);
    }
}

Related

  1. toSimpleDateTime(Date date)
  2. toTime(Date... date)
  3. toTimeStr(Date date)
  4. ToTimeStr(Date dt)
  5. toTimeString(Date date)
  6. toTimeString(Date date)
  7. toTimeString(Date dateTime)
  8. toTimeString(Date time)
  9. toUIDateTimeString(Date d)