各种数字类型转换成字符串型:
String s = String.valueOf( value); // 其中 value 为任意一种数字类型。
字符串型转换成各种数字类型:
String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i = Integer.parseInt( s );
long l = Long.parseLong( s );
Float f = Fl
最近在工作中遇到了一个小问题,如果要将字符串型的数据转换成dict类型,我第一时间就想到了使用json函数。但是里面出现了一些问题
1、通过json来转换:
In [1]: import json
In [2]: mes = '{InsId: 2, name: lege-happy, CreationTime: 2019-04-23T03:18:02Z}'
In [3]: mes_to_dict = json.loads(mes)
In [4]: print type(mes_to_dict)