Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.text.SimpleDateFormat;
- import java.util.Date;
- public class MainClass {
- public static void main(String[] args) {
- String pattern = "dd/MM/yyyy";
- SimpleDateFormat format = new SimpleDateFormat(pattern);
- // formatting
- System.out.println(format.format(new Date()));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment