android在外部数据库中设置数据

时间:2015-11-30 13:59:12

标签: java android mysql

我想用我的Android应用程序在外部mysql数据库中写入数据。

这个课适用于此:

public class SendingData extends AppCompatActivity {

Intent intent = null;

private class LoadingDataURL extends AsyncTask<String, String, JSONArray> {




    @Override
    protected JSONArray doInBackground(String... params) {
        URL url;
        HttpURLConnection urlConnection = null;
        JSONArray response = new JSONArray();

        try {
            url = new URL(params[0]);
            urlConnection = (HttpURLConnection) url.openConnection();
            int responseCode = urlConnection.getResponseCode();

            String responseString = readStream(urlConnection.getInputStream());

            intent = new Intent(SendingData.this, Overview.class);
            startActivity(intent);



            response = new JSONArray(responseString);

        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (urlConnection != null)
                urlConnection.disconnect();
        }

        return response;
    }

    private String readStream(InputStream in) {
        BufferedReader reader = null;
        StringBuffer response = new StringBuffer();
        try {
            reader = new BufferedReader(new InputStreamReader(in, "UTF-8"));
            String line = "";
            while ((line = reader.readLine()) != null) {
                response.append(line);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return response.toString();
    }
}



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.loading_data);

    String firstname = "Max";
    String secondname= "Mustermann";


    LoadingDataURL client = new LoadingDataURL();
    client.execute("https://domain.com/index.php?"+
                    "fristname="+fristname+
                    "&secondname="+secondname);

}
}

我的问题是,如果我的字符串(fristname,secondname)是&amp;要么 ?或任何特殊字符,该条目将无法正确保存。 有任何想法吗? :)

1 个答案:

答案 0 :(得分:0)

使用URLEncoder类。

请试试这个

String fn = URLEncoder.encode(fristname, "utf-8");
String sn = URLEncoder.encode(secondname, "utf-8");

LoadingDataURL client = new LoadingDataURL();
client.execute("https://domain.com/index.php?"+
                "fristname=" + fn + "&secondname=" + sn);

注意:不要对完整的网址进行编码,只需编码参数值。