安卓:发送文件到服务器:PHP接收服务器文件 [英] Android: Sending file to server : PHP receive that file in server

查看:135
本文介绍了安卓:发送文件到服务器:PHP接收服务器文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序需要发送csv文件服务器 我尝试以下code

In my application i have to send the csv file to server i tried the following code

            HttpPost httppost = new HttpPost(url);

        InputStreamEntity reqEntity = new InputStreamEntity(
                new FileInputStream(file), -1);
        reqEntity.setContentType("binary/octet-stream");
        reqEntity.setChunked(true); // Send in multiple parts if needed
        httppost.setEntity(reqEntity);
        HttpResponse response = httpclient.execute(httppost);

和我的PHP code是..

and my php code is..

<?php


if ($_FILES["detection"]["error"] > 0)
{
echo "Return Code: " . $_FILES["detection"]["error"] . "<br>";
 }

其他      {

else {

 if (file_exists($_FILES["detection"]["name"]))
  {
   echo $_FILES["detection"]["name"] . " already exists. ";
  }
 else
   {
  move_uploaded_file($_FILES["detection"]["tmp_name"],$_FILES["detection"]["name"]);
  echo "Stored in: ". $_FILES["detection"]["name"];
   }
 }

?>

我得到了错误

i got the error that

08-26 17:29:18.318:I /编辑用户配置文件(700):
08-26 17:29:18.318:I /编辑用户配置文件(700):注意:未定义指数:检测 C:\ XAMPP \ htdocs中\ sendreport.php 标签上行 4

08-26 17:29:18.318: I/edit user profile(700):
08-26 17:29:18.318: I/edit user profile(700): Notice: Undefined index: detection in C:\xampp\htdocs\sendreport.php on line 4

推荐答案

我希望它会工作

 // the file to be posted
String textFile = Environment.getExternalStorageDirectory() + "/sample.txt";
 Log.v(TAG, "textFile: " + textFile);

 // the URL where the file will be posted
 String postReceiverUrl = "http://yourdomain.com/post_data_receiver.php";
Log.v(TAG, "postURL: " + postReceiverUrl);

 // new HttpClient
 HttpClient httpClient = new DefaultHttpClient();

// post header
HttpPost httpPost = new HttpPost(postReceiverUrl);

File file = new File(textFile);
FileBody fileBody = new FileBody(file);

MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
reqEntity.addPart("file", fileBody);
httpPost.setEntity(reqEntity);

// execute HTTP post request
HttpResponse response = httpClient.execute(httpPost);
HttpEntity resEntity = response.getEntity();

if (resEntity != null) {

String responseStr = EntityUtils.toString(resEntity).trim();
Log.v(TAG, "Response: " +  responseStr);

// you can add an if statement here and do other actions based on the response
}

and php code.
<?php
// if text data was posted
if($_POST){
print_r($_POST);
}

 // if a file was posted
 else if($_FILES){
 $file = $_FILES['file'];
 $fileContents = file_get_contents($file["tmp_name"]);
 print_r($fileContents);
 }
 ?>

这篇关于安卓:发送文件到服务器:PHP接收服务器文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆