Java Locale Format formatLocaleTime(long time, Locale locale)

Here you can find the source of formatLocaleTime(long time, Locale locale)

Description

format Locale Time

License

Apache License

Parameter

Parameter Description
time a parameter
locale a parameter

Return

formatted time

Declaration

public static String formatLocaleTime(long time, Locale locale) 

Method Source Code

//package com.java2s;
/**/*from w w w  .  ja v  a  2s  .  c  o  m*/
 * OLAT - Online Learning and Training<br>
 * http://www.olat.org
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License"); <br>
 * you may not use this file except in compliance with the License.<br>
 * You may obtain a copy of the License at
 * <p>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p>
 * Unless required by applicable law or agreed to in writing,<br>
 * software distributed under the License is distributed on an "AS IS" BASIS, <br>
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
 * See the License for the specific language governing permissions and <br>
 * limitations under the License.
 * <p>
 * Copyright (c) 1999-2006 at Multimedia- & E-Learning Services (MELS),<br>
 * University of Zurich, Switzerland.
 * <p>
 */

import java.text.DateFormat;

import java.util.Date;

import java.util.Locale;

public class Main {
    /**
     * @param time
     * @param locale
     * @return formatted time
     */
    public static String formatLocaleTime(long time, Locale locale) {
        if (time == -1)
            return "-";
        return DateFormat.getTimeInstance(DateFormat.SHORT, locale).format(new Date(time));
    }
}

Related

  1. formatInteger(int input)
  2. formatInteger(Long num)
  3. formatIntWithCommas(int num)
  4. formatLines(String target, int maxLength, Locale currentLocale)
  5. formatLocaleDate(final java.util.Date date)
  6. formatMailDate(Date date)
  7. formatMessage(@Nonnull ResourceBundle bundle, @Nonnull String messageKey, @Nullable Object... args)
  8. formatMessage(String messageKey, Locale locale)
  9. formatMysqlDate(final Date date)