Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.io.File;
import java.util.Calendar;

public class Main {
    public static String genererNomFichierInexistant(String directory, String extensionFichier) {
        Calendar c = Calendar.getInstance();
        File aRetourner;
        if (extensionFichier.equals("")) {
            aRetourner = new File(
                    c.get(Calendar.DAY_OF_MONTH) + "_" + c.get(Calendar.MONTH) + "_" + c.get(Calendar.YEAR) + "_"
                            + c.get(Calendar.HOUR) + ":" + c.get(Calendar.MINUTE) + ":" + c.get(Calendar.SECOND));
        } else if (directory.equals("")) {
            aRetourner = new File(c.get(Calendar.DAY_OF_MONTH) + "_" + c.get(Calendar.MONTH) + "_"
                    + c.get(Calendar.YEAR) + "_" + c.get(Calendar.HOUR) + ":" + c.get(Calendar.MINUTE) + ":"
                    + c.get(Calendar.SECOND) + "." + extensionFichier);
        } else {
            aRetourner = new File(directory + "/" + c.get(Calendar.DAY_OF_MONTH) + "_" + c.get(Calendar.MONTH) + "_"
                    + c.get(Calendar.YEAR) + "_" + c.get(Calendar.HOUR) + ":" + c.get(Calendar.MINUTE) + ":"
                    + c.get(Calendar.SECOND) + "." + extensionFichier);
        }

        return aRetourner.getPath();
    }
}