java 中 String format 和Math类实例详解

java 中 String format 和Math类实例详解

java字符串格式化输出

@Test
public void test() {
  // TODO Auto-generated method stub
  //可用printf();
  System.out.println(String.format("I am %s", "jj"));     //%s字符串
  System.out.println(String.format("首字母是 %c", 'x'));     //%c字符
  System.out.println(String.format("this is %b", true));   //%b布尔类型
  System.out.println(String.format("十进制整数 %d", 34));     //%d 十进制整数
  System.out.println(String.format("十六进制整数 %x", 34));   //%x 十六进制整数
  System.out.println(String.format("八进制整数 %o", 34));     //%o 八进制整数
  System.out.println(String.format("浮点 %f", 34.0));      //%f 浮点
  System.out.println(String.format("十六进制浮点 %a", 34.0));    //%a 十六进制浮点
  System.out.println(String.format("指数 %e", 34.0));      //%e 指数类型
  System.out.println(String.format("通用浮点类型 %g", 34.0));    //%g 通用浮点
  System.out.println(String.format("散列码 %h", 34));      //%h 散列码
  System.out.println(String.format("百分比 %%"));        //%% 百分比
  System.out.println(String.format("换行 %n"));         //%n 换行
  System.out.println(String.format("日期与事件类型 %ty",Calendar.getInstance()));
  System.out.println(String.format("日期与事件类型 %tm",Calendar.getInstance()));
  System.out.println(String.format("日期与事件类型 %te",Calendar.getInstance()));
  //%tx 日期与事件类型,x代表不同的日期与时间转换符 %ty 年 %tm月 %te 日
  //搭配转换符的使用
  System.out.println(String.format("%+d", 10));        //为正数或负数添加符号
  System.out.println(String.format("|%-5d|", 10));      //%-?为左对齐
  System.out.println(String.format("%04d", 10));       //在整数之前添加指定数量空格
  System.out.println(String.format("%,f", 999999999.0));   //以“,”对数字分组
  System.out.println(String.format("%(f", -999999999.0));   //使用括号包含负数
  System.out.println(String.format("%#x", 34));        //十六进制添加0x
  System.out.println(String.format("%#o", 34));        //八进制添加0
  System.out.println(String.format("%#f", 34.0));       //浮点数包含小数点
  System.out.println(String.format("%f 和%<3.1f", 34.0f));   //格式化前一个转换符所描述的参数(小数后有一位)
  System.out.println(String.format("%3.1f", 34.0f));   //
  System.out.println(String.format("%2$d,%1$s", "a",1));   // x$代表是第几个变量
  //日期格式化
  System.out.println(String.format("全部日期和时间信息%tc", new Date()));   // tc 输出全部日期和时间信息
  System.out.println(String.format("年—月—日格式%tF", new Date()));      // tF 年—月—日格式(要大写)
  System.out.println(String.format("月/日/年格式%tD", new Date()));      // tD 月/日/年格式(要大写)
  System.out.println(String.format("HH:MM:SS PM/AM格式 %tr", new Date())); // tR HH:MM:SS PM/AM格式
  System.out.println(String.format("HH:MM:SS(24小时)%tT", new Date())); // (大写)tT HH:MM:SS 24小时制
  System.out.println(String.format("HH:MM(24小时)%tR", new Date()));  // (大写)tR HH:MM 24小时制 

  System.out.println(String.format(Locale.US,"英文月份简称%tb", new Date()));    // tb 输出月份简称
  System.out.println(String.format("本地月份简称%tb", new Date()));       // tb 输出月份简称
  System.out.println(String.format(Locale.US,"英文月份全称%tB", new Date()));    // tB 输出月份全称
  System.out.println(String.format("本地月份全称%tB", new Date()));       // tB 输出月份全称
  System.out.println(String.format(Locale.US,"星期简称%ta", new Date()));   // ta 输出星期简称
  System.out.println(String.format("星期全称%tA", new Date()));        // tA 输出星期全称
  Date date = new Date();
  System.out.printf("本地星期的简称:%tA%n",date);
  //C的使用,年前两位
  System.out.printf("年的前两位数字(不足两位前面补0):%tC%n",date);
  //y的使用,年后两位
  System.out.printf("年的后两位数字(不足两位前面补0):%ty%n",date);
  //j的使用,一年的天数
  System.out.printf("一年中的天数(即年的第几天):%tj%n",date);
  //m的使用,月份
  System.out.printf("两位数字的月份(不足两位前面补0):%tm%n",date);
  //d的使用,日(二位,不够补零)
  System.out.printf("两位数字的日(不足两位前面补0):%td%n",date);
  //e的使用,日(一位不补零)
  System.out.printf("月份的日(前面不补0):%te",date);
 //H的使用
    System.out.printf("2位数字24时制的小时(不足2位前面补0):%tH%n", date);
    //I的使用
    System.out.printf("2位数字12时制的小时(不足2位前面补0):%tI%n", date);
    //k的使用
    System.out.printf("2位数字24时制的小时(前面不补0):%tk%n", date);
    //l的使用
    System.out.printf("2位数字12时制的小时(前面不补0):%tl%n", date);
    //M的使用
    System.out.printf("2位数字的分钟(不足2位前面补0):%tM%n", date);
    //S的使用
    System.out.printf("2位数字的秒(不足2位前面补0):%tS%n", date);
    //L的使用
    System.out.printf("3位数字的毫秒(不足3位前面补0):%tL%n", date);
    //N的使用
    System.out.printf("9位数字的毫秒数(不足9位前面补0):%tN%n", date);
    //p的使用
    String str = String.format(Locale.US, "小写字母的上午或下午标记(英):%tp", date);
    System.out.println(str);
    System.out.printf("小写字母的上午或下午标记(中):%tp%n", date);
    //z的使用
    System.out.printf("相对于GMT的RFC822时区的偏移量:%tz%n", date);
    //Z的使用
    System.out.printf("时区缩写字符串:%tZ%n", date);
    //s的使用
    System.out.printf("1970-1-1 00:00:00 到现在所经过的秒数:%ts%n", date);
    //Q的使用
    System.out.printf("1970-1-1 00:00:00 到现在所经过的毫秒数:%tQ%n", date);
}

Math

@Test
  public void test3(){
    BigDecimal d = new BigDecimal("123");
    BigDecimal e = new BigDecimal("14455552");
    System.out.println(Math.pow(123, 12));
    System.out.println(d.pow(12)); 

    System.out.println(Math.ceil(12.3));//ceil,天花板 13.0
    System.out.println(Math.floor(-12.3));//ceil,地板 -13.0
    System.out.println(Math.round(13.3));//四舍五入  13
    System.out.println(Math.round(-13.5));//四舍五入   -13
    System.out.println(Math.round(-13.2));//四舍五入   -13
    System.out.println(Math.round(-13.7));//四舍五入   -14
  }

随机数

//随机数
  @Test
  public void test4(){
    System.out.println(Math.random());//返回一个随机数>=0,+b1
    //0-100(不包括100)
    int a =(int)(Math.random()*100);
    //0-100(包括100)
    int b =(int)(Math.random()*101);
    //30-100(包括100)
    int c =(int)(Math.random()*71+30);
    //0-10
    int d = (int)(Math.random()*10);
    System.out.println(a);
    System.out.println(b);
    System.out.println(c);
    System.out.println(d);
  }
@Test
public void test5(){
  Random r = new Random();
  int a = r.nextInt(101);//0-100 

}

simpledateformat

@Test
  public void testId() throws ParseException{
    String s = "411123199409203013";
    if(s.length()==18){
      String b = s.substring(6, 14);
      String sex = Integer.parseInt(s.substring(14, 17))%2==0?"女":"男";
      SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
      Date birth = sdf.parse(b);//将一个日期字符串按指定的格式解析成日期对象
      sdf = new SimpleDateFormat("yyyy年MM月dd日");
      System.out.println("你的生日是"+sdf.format(birth)+",你的性别是"+sex);
      String f = String.format("你的生日是%1$TY年%1$Tm月%1$Td日,你的性别是%2$s", birth,sex);
      System.out.println(f);
    }else if(s.length()==15){
      String b = s.substring(6, 14);
      String sex = Integer.parseInt(s.substring(14, 17))%2==0?"女":"男";
      SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
      Date birth = sdf.parse(b);//将一个日期字符串按指定的格式解析成日期对象
      sdf = new SimpleDateFormat("yyyy年MM月dd日");
      System.out.println("你的生日是"+sdf.format(birth)+",你的性别是"+sex);//format将日期对象生成指定格式的字符串 

    }

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(0)

相关推荐

  • 基于Java中Math类的常用函数总结

    Java中比较常用的几个数学公式的总结: //取整,返回小于目标函数的最大整数,如下将会返回-2 Math.floor(-1.8): //取整,返回发育目标数的最小整数 Math.ceil() //四舍五入取整 Math.round() //计算平方根 Math.sqrt() //计算立方根 Math.cbrt() //返回欧拉数e的n次幂 Math.exp(3); //计算乘方,下面是计算3的2次方 Math.pow(3,2); //计算自然对数 Math.log(); //计算绝对值 Mat

  • 基于java math API 的详细解释说明

    Math.PI 记录的圆周率Math.E 记录e的常量Math中还有一些类似的常量,都是一些工程数学常用量.Math.abs 求绝对值Math.sin 正弦函数 Math.asin 反正弦函数Math.cos 余弦函数 Math.acos 反余弦函数Math.tan 正切函数 Math.atan 反正切函数 Math.atan2 商的反正切函数Math.toDegrees 弧度转化为角度 Math.toRadians 角度转化为弧度Math.ceil 得到不小于某数的最大整数Math.floor

  • 浅谈java中math类中三种取整函数的区别

    math类中三大取整函数 1.ceil 2.floor 3.round 其实三种取整函数挺简单的.只要记住三个函数名翻译过来的汉语便能轻松理解三大函数,下面一一介绍 1.ceil,意思是天花板,java中叫做向上取整,大于等于该数字的最接近的整数 例: math.ceil(13.2)=14 math.ceil(-13.2)=-13 2.floor,意思是地板,java中叫做向下取整,小于等于该数字的最接近的整数 例: math.floor(13.2)=13 math.floor(-13.2)=-

  • Java中Math类常用方法代码详解

    近期用到四舍五入想到以前整理了一点,就顺便重新整理好经常见到的一些四舍五入,后续遇到常用也会直接在这篇文章更新... public class Demo{ public static void main(String args[]){ /** *Math.sqrt()//计算平方根 *Math.cbrt()//计算立方根 *Math.pow(a, b)//计算a的b次方 *Math.max( , );//计算最大值 *Math.min( , );//计算最小值 */ System.out.pri

  • JavaScipt中的Math.ceil() 、Math.floor() 、Math.round() 三个函数的理解

    首先还是看看JavaScript: The Definitive Guide, 4th Edition中对三个函数的定义. Math.ceil(): round a number up Arguments: Any numeric value or expression Returns: The closest integer greater than or equal to x. ---------------------------------------------------------

  • 浅谈java中Math.random()与java.util.random()的区别

    今天突然想起来,java产生随机数的问题,上机试了一下,找到了一点区别,在这里总结一下: 直接调用Math.random()是产生一个[0,1)之间的随机数, 如果用 java.util.Random random=new Random();random.nextInt() 这样产生一个长整型的随机数并且与上一次是一样的,如果过一会再产生就不会一样了,例如: for (int i = 0; i < 10; i++) { Random random=new Random(); Thread.sle

  • java 中 String format 和Math类实例详解

    java 中 String format 和Math类实例详解 java字符串格式化输出 @Test public void test() { // TODO Auto-generated method stub //可用printf(); System.out.println(String.format("I am %s", "jj")); //%s字符串 System.out.println(String.format("首字母是 %c",

  • java中 String和StringBuffer的区别实例详解

    java中 String和StringBuffer的区别实例详解 String: 是对象不是原始类型.            为不可变对象,一旦被创建,就不能修改它的值.            对于已经存在的String对象的修改都是重新创建一个新的对象,然后把新的值保存进去.            String 是final类,即不能被继承. StringBuffer: 是一个可变对象,当对他进行修改的时候不会像String那样重新建立对象            它只能通过构造函数来建立,  

  • JAVA 中解密RSA算法JS加密实例详解

    JAVA 中解密RSA算法JS加密实例详解 有这样一个需求,前端登录的用户名密码,密码必需加密,但不可使用MD5,因为后台要检测密码的复杂度,那么在保证安全的前提下将密码传到后台呢,答案就是使用RSA非对称加密算法解决 . java代码 需要依赖 commons-codec 包 RSACoder.Java import org.apache.commons.codec.binary.Base64; import javax.crypto.Cipher; import java.security.

  • java中压缩文件并下载的实例详解

    当我们对一些需要用到的资料进行整理时,会发现文件的内存占用很大,不过是下载或者存储,都不是很方便,这时候我们会想到把文件变成zip格式,即进行压缩.在正式开始压缩和下载文件之前,我们可以先对zip的格式进行一个了解,然后再就具体的方法给大家带来分享. 1.ZIP文件格式 [local file header + file data + data descriptor]{1,n} + central directory + end of central directory record 即 [文件

  • java 中Excel转shape file的实例详解

    java  中Excel转shape file的实例详解 概述: 本文讲述如何结合geotools和POI实现Excel到shp的转换,再结合前文shp到geojson数据的转换,即可实现用户上传excel数据并在web端的展示功能. 截图: 原始Excel文件 运行耗时 运行结果 代码: package com.lzugis.geotools; import com.lzugis.CommonMethod; import com.vividsolutions.jts.geom.Coordina

  • java 中序列化与readResolve()方法的实例详解

    java 中序列化与readResolve()方法的实例详解 readResolve方法是作用是什么?这个方法跟对象的序列化相关(这样倒是解释了为什么 readResolve方法是private修饰的). 怎么跟对象的序列化相关了? 下面我们先简要地回顾下对象的序列化.一般来说,一个类实现了 Serializable接口,我们就可以把它往内存地写再从内存里读出而"组装"成一个跟原来一模一样的对象.不过当序列化遇到单例时,里边就有了个问题:从内存读出而组装的对象破坏了单例的规则.单例是要

  • Java中JDBC实现动态查询的实例详解

    一 概述 1.什么是动态查询? 从多个查询条件中随机选择若干个组合成一个DQL语句进行查询,这一过程叫做动态查询. 2.动态查询的难点 可供选择的查询条件多,组合情况多,难以一一列举. 3.最终查询语句的构成 一旦用户向查询条件中输入数据,该查询条件就成为最终条件的一部分. 二 基本原理 1.SQL基本框架 无论查询条件如何,查询字段与数据库是固定不变的,这些固定不变的内容构成SQL语句的基本框架,如 select column... from table. 2.StringBuilder形成D

  • Java 中HttpURLConnection附件上传的实例详解

    Java 中HttpURLConnection附件上传的实例详解 整合了一个自己写的采用Http做附件上传的工具,分享一下! 示例代码: /** * 以Http协议传输文件 * * @author mingxue.zhang@163.com * */ public class HttpPostUtil { private final static char[] MULTIPART_CHARS = "-_1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJK

  • Java中常见死锁与活锁的实例详解

    本文介绍了Java中常见死锁与活锁的实例详解,分享给大家,具体如下: 顺序死锁:过度加锁,导致由于执行顺序的原因,互相持有对方正在等待的锁 资源死锁:多个线程在相同的资源上发生等待 由于调用顺序而产生的死锁 public class Test { Object leftLock = new Object(); Object rightLock = new Object(); public static void main(String[] args) { final Test test = ne

  • java中String StringBuffer和StringBuilder的区别详解

    目录 从声明定义上来谈 从结构上来谈 从线程安全来谈 总结 从声明定义上来谈 只有String 可以 直接声明创建 而 StringBuffer 与 StringBuilder 必须去new对象 这是因为只有String会在这种声明方式下去字符串常量池创建,其他则没有 StringBuffer stf = new StringBuffer("abc"); StringBuilder stb = new StringBuilder("abc"); StringBuff

随机推荐