All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.binodnme.main.Main Maven / Gradle / Ivy

Go to download

Date converter is a java library that converts the date in A.D. to B.S. and vice versa

The newest version!
package com.github.binodnme.main;

import com.github.binodnme.dateconverter.converter.DateConverter;
import com.github.binodnme.dateconverter.utils.DateBS;

import java.util.Date;

/**
 * Created by binodnme
 * Created on 7/11/16.
 */
public class Main {
    /**
     * main method
     * @param args string args
     */
    public static void main(String[] args){
        DateBS dateBS = new DateBS();
        Date date = DateConverter.convertBSToAD(dateBS);
        System.out.println(date);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy