background image

String->Float 
Float static float parseFloat(String s) 

Float->String 
Float static String toString(float f) 

String->Double 
Double static double parseDouble(String s)

Double->String
Double static String toString(Double d) 

这是一个例子,说的是 JAVA

 

中数据数型的转换。供大家学习参考

package cn.com.lwkj.erts.register; 
import java.sql.Date; 
public class TypeChange { 
public TypeChange() { 

//change the string type to the int type 
public static int stringToInt(String intstr) 

Integer integer; 
integer = Integer.valueOf(intstr); 
return integer.intValue(); 

//change int type to the string type 
public static String intToString(int value) 

Integer integer = new Integer(value); 
return integer.toString(); 

//change the string type to the float type 
public static float stringToFloat(String floatstr) 

Float floatee; 
floatee = Float.valueOf(floatstr); 
return floatee.floatValue(); 

//change the float type to the string type 
public static String floatToString(float value) 

Float floatee = new Float(value); 
return floatee.toString();