String temp1=(String)firstname.getText().toString();
String temp2=(String)lastname.getText().toString();
String urlreg="http://localhost/welcome.php?firstname="+temp1+"&lastname="+temp2;
ここで、firstnameとlastnameはeditTextフィールドです。
以下のようなエラーが発生します。
LogCatエラー:
09-11 22:11:09.529: E/AndroidRuntime(1204): FATAL EXCEPTION: main
09-11 22:11:09.529: E/AndroidRuntime(1204): java.lang.IllegalArgumentException: Illegal character in query at index 54: http://localhost/welcome.php?firstname=ji&lastname=kij
コードを次のように変更すると、コードは正常に機能します
String urlreg="http://localhost/welcome.php?firstname="+temp1+"&lastname";
どこが間違っているのですか?