"convert a regular date to julian date and vice versa in java" Code Answer

5

if you want 113029 ==> 29.01.2013 try

    string j = "113029";
    date date = new simpledateformat("myydd").parse(j);
    string g = new simpledateformat("dd.mm.yyyy").format(date);
    system.out.println(g);

output

29.01.2013
By ian.shaun.thomas on February 1 2022

Answers related to “convert a regular date to julian date and vice versa in java”

Only authorized users can answer the Search term. Please sign in first, or register a free account.