データが String 型で、このデータを xml としてサーバーに送信したいのですが、どうすればよいですか?
httpclient = new DefaultHttpClient();
httppost = new HttpPost("http://longvansolution.tk/login.php"); // make
// sure
// the
// url
// is
// correct.
// add your data
nameValuePairs = new ArrayList<NameValuePair>(2);
// Always use the same variable name for posting i.e the android
// side variable name and php side variable name should be
// similar,
nameValuePairs.add(new BasicNameValuePair("username",
txtusername.getText().toString().trim())); // $Edittext_value
// =
// $_POST['Edittext_value'];
nameValuePairs.add(new BasicNameValuePair("password",
txtpassword.getText().toString().trim()));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
response = httpclient.execute(httppost);
今、私はこのように使用したくありません.xmlを送信したいです。