0
私はurl.openConnection
のエラーを知りたいのですが。 エラーは次のとおりです。url.openConnection()の下に赤い下線が表示される理由
未処理の例外ここで
されているコード:
switch (v.getId()){
case R.id.loginbtn:
String link;
String username = uname.getText().toString();
String password = upass.getText().toString();
HttpURLConnection urlConnection = null;
try {
String u = "http://127.0.0.1/android/login.php";
URL url = new URL(u);
String urlParams = "username="+username+"&password"+password;
urlConnection = (HttpURLConnection) url.openConnection();
} catch (MalformedURLException e) {
e.printStackTrace();
} finally {
urlConnection.disconnect();
}
をキャッチする必要があります –