Format second with ss in Java
Description
The following code shows how to format second with ss.
Example
/* w w w . j a va 2s.com*/
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] argv) throws Exception {
Format formatter = new SimpleDateFormat("ss");
String s = formatter.format(new Date());
System.out.println(s);
}
}
The code above generates the following result.