java.lang.IllegalArgumentException:索引0中的方案中的非法字符:AND android.os.NetworkOnMainThreadException

时间:2011-09-07 03:41:09

标签: android-emulator

当我点击Android模拟器上的“登录”按钮时,会出现此问题,它出现在“用户名”文本框中。

请帮我解决一下......你的帮助很感激〜

java.lang.IllegalArgumentException:索引0处的方案中的非法字符:

android.os.NetworkOnMainThreadException

- 更新7.9.2011

我在这里发布我的代码:

http://pastebin.com/EX0ArwaE - > Login.java

http://pastebin.com/WgGctGHN - > CustomHttpClient.java

1 个答案:

答案 0 :(得分:1)

首先是Android的东西:你得到这个NetworkOnMainThreadException,因为你试图在主应用程序线程(即UI线程)上发出HTTP请求。您不应该在此线程中执行任何阻止操作。请改用AsyncTask

我不太确定导致IllegalArgumentException的原因是什么,但我想这就是这句话:

response = CustomHttpClient.executeHttpPost("http://127.0.0.1/es/check.php", postParameters);

您可能已更改过网址(localhost通常在手机上没有意义)。方案部分是http。也许你在原始代码中有" http://..."(注意前导空格字符)?

关于PHP的简短说明:

$sql = 'SELECT * from people WHERE username = "' .$_POST['un'] . '" and password = "' .md5($_POST['pw']) . '"';

这就是你所说的SQL injection

更新:以下是一些示例。没有测试它,希望它有效。

public class LoginLayout extends Activity {

    EditText un,pw;
    TextView error;
    Button ok;

    /** Called when the activity is first created. */

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        un=(EditText)findViewById(R.id.et_un);
        pw=(EditText)findViewById(R.id.et_pw);
        ok=(Button)findViewById(R.id.btn_login);
        error=(TextView)findViewById(R.id.tv_error);

        ok.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                new LoginTask().execute(un.getText().toString(), pw.getText().toString());
            }

        });
    }

    private class LoginTask extends AsyncTask<String, Void, Object> {

        protected Object doInBackground(String... params) {
            ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
            postParameters.add(new BasicNameValuePair("username", params[0]));
            postParameters.add(new BasicNameValuePair("password", params[1]));

            String response = null;

            try {
                response = CustomHttpClient.executeHttpPost("http://127.0.0.1/es/check.php", postParameters);
                String res = response.toString();
                res = res.replaceAll("\\s+","");
                return res;
            } catch (Exception e) {
                return e;
            }
        }

        protected void onPostExecute(Object result) {
            if (result instanceof String) {
                if (result.equals("1")) {
                    error.setText("Correct Username or Password");
                } else {
                    error.setText("Sorry!! Wrong Username or Password Entered");
                }
            } else if (result instanceof Exception) {
                un.setText(result.toString());
            }
        }
    }

}