使用Integer.parseInt(str)可以将字符串转为整型,前提是str必须是一串数字,详情看下图。
给你一个简单的例子吧.String str = "11111";int a;a=Integer.parseInt(str);