欢迎光临
我们一直在努力

在java开发过程中经常碰到数据类型的问题-JSP教程,Java技巧及代码

建站超值云服务器,限时71元/月

(1)在把int或double转换成bigdecimal时位数就会相应的增长,为了解决这个问题,可以将double获long型通过自写函数round进行四舍五入
    后,在转换成string,然后通过new bigdecimal()转换过来
   
    例如:fosum = new bigdecimal(string.&#118alueof(round(uo1sum.double&#118alue() + uo2sum.double&#118alue(),3)))
 
  (2)将时间转换成字符

        java.util.date date = new java.util.date(databean.gettyrq().gettime());
        simpledateformat sdf = new simpledateformat(“yyyy-mm-dd”);
        tyrq = sdf.format(date);

  (3)将字符串转换成时间timestamp类型
       public  java.sql.timestamp strtotimestamp(string str){
           java.sql.timestamp sdate = null;

    if(str!=null){

      if(str.trim().length()==8){
        str = str.substring(0,4)+”-“+str.substring(4,6)+”-“+str.substring(6,8);

      }
    try{
     dateformat df = dateformat.getdateinstance(dateformat.default,java.util.locale.china);
     java.util.date date = df.parse(str);
     sdate = new java.sql.timestamp(date.gettime());
    }catch(exception e){
      e.printstacktrace();
    }

}
  return sdate;
}
 
  (4)将double型进行四舍五入
     public  double round(double v,int scale){

       if(scale<0){

           throw new illegalargumentexception(“the scale must be a positive integer or zero”);

       }

       bigdecimal b = new bigdecimal(double.tostring(v));

       bigdecimal one = new bigdecimal(“1”);

       return b.divide(one,scale,bigdecimal.round_half_up).double&#118alue();

   }
  (5)将int转换成byte[]
     
    public byte[] inttobytearray(int num){
       int temp = num;
       byte[] b = new byte[6];
      for(int i=b.length;i>-1;i–){
      b[i] = new integer(temp&0xff).byte&#118alue();
        temp = temp >> 8;
      }
     return b;
    }
 
  (6)将int转换成byte
        int s=0;
        byte b = (byte)s;

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在java开发过程中经常碰到数据类型的问题-JSP教程,Java技巧及代码
分享到: 更多 (0)