Here you can find the source of getTime(java.util.Date date)
public static String getTime(java.util.Date date)
//package com.java2s; /**/* w w w . j a va 2 s . c o m*/ * Copyright (c) 2011, Eryptogram.java TAIHEIOT and/or its affiliates. All rights reserved. * * Licensed under the TAIHEIOT License, Version 1.0 (the "License"); * you may not use this file except in compliance with the License. * 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.SimpleDateFormat; public class Main { public static String getTime(java.util.Date date) { return formatDateHMS(date); } public static String formatDateHMS(java.util.Date date) { String result = ""; if (date != null) { try { SimpleDateFormat dateFormater = new SimpleDateFormat("HH:mm:ss"); result = dateFormater.format(date); } catch (Exception ex) { ex.printStackTrace(); } } return result; } }