Android中 int 和 String 互相转换的多种方法

1 如何将字串 String 转换成整数 int? 

A. 有两个方法:

1). int i = Integer.parseInt([String]); 或 
i = Integer.parseInt([String],[int radix]);

2). int i = Integer.valueOf(my_str).intValue(); 

注: 字串转成 Double, Float, Long 的方法大同小异. 

2 如何将整数 int 转换成字串 String ? 

A. 有三种方法:

1.) String s = String.valueOf(i);

2.) String s = Integer.toString(i); 

3.) String s = "" + i; 

注: Double, Float, Long 转成字串的方法大同小异.


原文链接:http://blog.csdn.net/chrisfxs/article/details/8159270


另外:char类型的'0'~'9'转换为int型的0~9时常用:

A.int i = Integer.parseInt(c + "");

B.int i = c - '0';


输入一段数字转换为字符数组的方法

char input[] = String.valueOf(in.nextInt()).toCharArray();

即先转换为String再转换为char[]

你可能感兴趣的:(Android中 int 和 String 互相转换的多种方法)