Java Today getToday(String formatString)

Here you can find the source of getToday(String formatString)

Description

get Today

License

Apache License

Declaration

public static String getToday(String formatString) 

Method Source Code

//package com.java2s;
/*//from w w w .j a  va2 s. co  m
 * Copyright 2001-2006 The Apache Software Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the ";License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.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.SimpleDateFormat;

import java.util.Date;
import java.util.Locale;

public class Main {

    public static String getToday(String formatString) {
        Date today = new Date();
        Locale currentLocale = new Locale("KOREAN", "KOREA");
        String pattern = formatString;
        SimpleDateFormat formatter = new SimpleDateFormat(pattern, currentLocale);

        return formatter.format(today);
    }
}

Related

  1. getToday(boolean ceOrTw, String deli)
  2. getToDay(boolean withTime)
  3. getToday(int hour, int minute, int second)
  4. getToday(String datePattern)
  5. getToday(String format)
  6. getToday(String time)
  7. getTodayAsLong()
  8. getTodayAsSecond()
  9. getTodayDate()