5.8 日期字符串数字的格式化

Posted syx1997

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.8 日期字符串数字的格式化相关的知识,希望对你有一定的参考价值。

数字的格式化

①Math类:  

                abs();    绝对值             

public class Test {

	public static void main(String[] args) {
                 int a = Math.abs(-7);
                System.out.println(a);    // 打印7
}  

                  ceil();    向上取整                    

        floor();   向下取整

public class Test {

	public static void main(String[] args) {
				
		double d1 = Math.ceil(12.345);                                  
		double d2 = Math.ceil(12.745);
		double d3 = Math.floor(12.345);
		double d4 = Math.floor(12.745);
		System.out.println(d1);                          //打印13
		System.out.println(d2);                         //打印13
		System.out.println(d3);                         //打印12
		System.out.println(d4);                         //打印12
         }
}  

                  round();        四舍五入取整

public class Test {

	public static void main(String[] args) {
		
		double d5 = Math.round(13.111);
		double d6 = Math.round(13.711);
		System.out.println(d5);                    //打印13       
		System.out.println(d6);                   //打印14
              }
} 

                  random();     取随机数(0-1,不包括1)

                  还可以用java.util.Random

                                   nextInt(int  bounds)

          全球唯一标识   UUID   一般用于文件上传,重名的。上传时随机生成改名

import java.util.UUID;
public class Test {

	public static void main(String[] args) {
			
		UUID uuid = UUID.randomUUID();
		System.out.println(uuid);               //打印一个很长的名字
        }
}

           Date    时间戳  某一个时间点到当前时间的毫秒数,弊端:服务器快会重名

public class Test {

	public static void main(String[] args) {
			
		Date date = new Date();
		System.out.println(date.getTime());     //一串数字
	}

}

  

       

以上是关于5.8 日期字符串数字的格式化的主要内容,如果未能解决你的问题,请参考以下文章

如何从我的 DatePicker 片段中传输格式化的日期字符串?

高级特性- 国际化

js中怎么把日期转换成数字?

需要单个数字(日和月)的唯一日期格式化程序[关闭]

将数字字符串转换为 日期格式问题解答

Laravel 5.8 有条件地插入 sql 片段