码迷,mamicode.com
首页 > 编程语言 > 详细

java 数字转换成字符串

时间:2017-09-04 22:42:37      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:col   short   static   system   数字   integer   void   eof   数字转换   

一、各种数字类型转换成字符串型: 

public static void main(String[] args) {
    double value = 123456.123;
    String str = String.valueOf(value); // 其中 value 为任意一种数字类型。
    System.out.println("字符串str 的值: " + str); //字符串str 的值: 123456.123
}

 

二、字符串型转换成各种数字类型:

public static void main(String[] args) {
    String s = "2"; 
    byte b = Byte.parseByte( s ); 
    short t = Short.parseShort( s ); 
    int i = Integer.parseInt( s ); 
    long l = Long.parseLong( s ); 
    Float f = Float.parseFloat( s ); 
    Double d = Double.parseDouble( s );
}

 

java 数字转换成字符串

标签:col   short   static   system   数字   integer   void   eof   数字转换   

原文地址:http://www.cnblogs.com/unknows/p/7446244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!