String daniel;
daniel = hi.getWebPage("http://daniandroid.honor.es/");
getWebPage返回的是一个String类型,其中包含内容。 这工作2天前。
在此网址上 - >
<?php
echo"300"
?>
当我尝试转换&#34;内容&#34;从字符串到&#34; int&#34;我收到错误,应用程序崩溃了。
int verif = Integer.parseInt(daniel);
我得到的错误是
java.lang.NumberFormatException: Invalid int: "300"
我在2天前做了相同的代码并且它有效。
编辑: 我试过了
String daniel;
daniel = "test";
我得到的是
java.lang.NumberFormatException: Invalid int: "test"
答案 0 :(得分:0)
尝试daniel.trim()
也许某些空格来自univerce;)