I have a constructor like this :
Person (String name, int age, Calendar date_employment);
When i read this info from my file I get it as a String so how do I convert my String which contains my date into a Calendar type so I can pass it to my constructor?