|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
令人可喜的是java现在已经开源了,所以我想我上述的想法也许有一天会实现,因为java一直都是不断创新的语言,每次创新都会给我们惊喜,这也是我喜欢java的一个原因。历程|数据|数据范例|成绩(1)在把int或double转换成BigDecimal时位数就会响应的增加,为懂得决这个成绩,能够将double获long型经由过程自写函数round举行四舍五进
后,在转换成String,然后经由过程newBigDecimal()转换过去
比方:fosum=newBigDecimal(String.&#118alueOf(round(uo1sum.double&#118alue()+uo2sum.double&#118alue(),3)))
(2)将工夫转换成字符java.util.Datedate=newjava.util.Date(databean.getTyrq().getTime());
SimpleDateFormatsdf=newSimpleDateFormat("yyyy-MM-dd");
tyrq=sdf.format(date);
(3)将字符串转换成工夫Timestamp范例
publicjava.sql.TimestampstrToTimestamp(Stringstr){
java.sql.Timestampsdate=null;
if(str!=null){
if(str.trim().length()==8){
str=str.substring(0,4)+"-"+str.substring(4,6)+"-"+str.substring(6,8);
}
try{
DateFormatdf=DateFormat.getDateInstance(DateFormat.DEFAULT,java.util.Locale.CHINA);
java.util.Datedate=df.parse(str);
sdate=newjava.sql.Timestamp(date.getTime());
}catch(Exceptione){
e.printStackTrace();
}
}
returnsdate;
}
(4)将double型举行四舍五进
publicdoubleround(doublev,intscale){
if(scale<0){
thrownewIllegalArgumentException("Thescalemustbeapositiveintegerorzero");
}
BigDecimalb=newBigDecimal(Double.toString(v));
BigDecimalone=newBigDecimal("1");
returnb.divide(one,scale,BigDecimal.ROUND_HALF_UP).double&#118alue();
}
(5)将int转换成byte[]
publicbyte[]InttoByteArray(intnum){
inttemp=num;
byte[]b=newbyte[6];
for(inti=b.length;i>-1;i--){
b[i]=newInteger(temp&0xff).byte&#118alue();
temp=temp>>8;
}
returnb;
}
(6)将int转换成byte
ints=0;
byteb=(byte)s;
Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。Oracle收购Sun后Java前途未卜。 |
|