Java Long Number to Date dateToAPODString(long date)

Here you can find the source of dateToAPODString(long date)

Description

date To APOD String

License

Apache License

Declaration

public static String dateToAPODString(long date) 

Method Source Code

//package com.java2s;
/*// w  ww.  j ava2 s .  co m
 Copyright 2015 Joseph Tranquillo {name of copyright owner}

 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;

public class Main {
    private final static SimpleDateFormat date_apod = new SimpleDateFormat(
            "yyMMdd");

    public static String dateToAPODString(long date) {
        return date_apod.format(date);
    }
}

Related

  1. convertMillisecondToDateTimeString(long millisecond, String mark)
  2. convertMMDDYYYYToDate(String date)
  3. convertMsToDate(long millis)
  4. convertMsToSimpleDate(long Millis)
  5. convertUNIXTimeToString(long time)
  6. dateToLong(String date)
  7. dateToPGNDate(long when)
  8. dateToString(long date)
  9. dateToString(long date)