Java Time Now currentTimePath(String basePath)

Here you can find the source of currentTimePath(String basePath)

Description

current Time Path

License

Open Source License

Declaration

static public String currentTimePath(String basePath) 

Method Source Code

//package com.java2s;
/**/* w  w w  .ja v a 2 s.c om*/
 * Copyright (C) 2011 Headvances Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
    
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * This project aim to build a set of library/data to process 
 * the Vietnamese language and analyze the web data
 **/

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    final static public SimpleDateFormat COMPACT_DATE_TIME_ID = new SimpleDateFormat("yyyyMMddHHmmss");

    static public String currentTimePath(String basePath) {
        String backupTime = basePath + "/" + COMPACT_DATE_TIME_ID.format(new Date());
        return backupTime;
    }
}

Related

  1. currentTime()
  2. currentTime()
  3. currentTime()
  4. currentTimedDate()
  5. currentTimeMillis()
  6. currentTimeStr()
  7. currentTimeString()
  8. currentTimeString(String pattern)
  9. currtimeToString8()