带小数点的字符串数字转int类型

		String b = "2261.0";
		System.out.println(Double.valueOf(b).intValue());

你可能感兴趣的:(java,数据类型)