Here you can find the source of format6chars(Date date, TimeZone tz)
public static String format6chars(Date date, TimeZone tz)
//package com.java2s; /*/*ww w. j a v a 2 s. c o m*/ * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. The ASF licenses this file to You * 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. For additional information regarding * copyright in this work, please see the NOTICE file in the top level * directory of this distribution. */ import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { private static final String FORMAT_6CHARS = "yyyyMM"; public static String format6chars(Date date) { return format(date, get6charDateFormat()); } public static String format6chars(Date date, TimeZone tz) { SimpleDateFormat formatter = get6charDateFormat(); formatter.setTimeZone(tz); return format(date, formatter); } /** * Returns a string the represents the passed-in date parsed * according to the passed-in format. Returns an empty string * if the date or the format is null. **/ public static String format(Date aDate, SimpleDateFormat aFormat) { if (aDate == null || aFormat == null) { return ""; } synchronized (aFormat) { return aFormat.format(aDate); } } public static SimpleDateFormat get6charDateFormat() { return new SimpleDateFormat(FORMAT_6CHARS); } }