This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.

27 lines
394 B
Plaintext
Raw Permalink Normal View History

2024-08-24 16:26:58 +02:00
= Time
////
weight=800
////
////
+++
title = "About"
date = "2023-11-12"
menu = "main"
+++
////
----
Todo
Calendar c = Calendar.getInstance();
c.setTime(currentDate);
// manipulate date
c.add(Calendar.YEAR, 1);
c.add(Calendar.MONTH, 1);
c.add(Calendar.DATE, 1); //same with c.add(Calendar.DAY_OF_MONTH, 1);
c.add(Calendar.HOUR, 1);
c.add(Calendar.MINUTE, 1);
c.add(Calendar.SECOND, 1);
----