Here you can find the source of getTimestampFormatter()
private static SimpleDateFormat getTimestampFormatter()
//package com.java2s; /**/* w w w . j av a 2 s .c o m*/ * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. * If a copy of the MPL was not distributed with this file, You can obtain one at * http://mozilla.org/MPL/2.0/. * * This Source Code Form is also subject to the terms of the Health-Related Additional * Disclaimer of Warranty and Limitation of Liability available at * http://www.carewebframework.org/licensing/disclaimer. */ import java.text.SimpleDateFormat; public class Main { /** * Returns a formatter capable of producing and parsing timestamps. * * @return Formatter for timestamps. */ private static SimpleDateFormat getTimestampFormatter() { return new SimpleDateFormat("yyyyMMddHHmmssz"); } }