I have tried so many methods and answers that described on stack overflow and other blogs for uploading a file from my android app to my server but none of them worked for me.
I used httpclient4.3.3.jar,httpcore4.3.3.jar and httpmime4.3.3.jar
Am not getting any error messages and my app working fine. But not data coming in my server, am using php server and my server side code is bellow.
$file_path = "uploads/";
$file_path = $file_path.basename( $_FILES['file_data']['name']);
if(move_uploaded_file($_FILES['file_data']['tmp_name'], $file_path)) {
echo "success";
} else{
echo "fail";
}
please give me any working samples or code with required libs. So many days am working on it.. please help me with a complete answer.
Try this.
You need to add following Jar in Your project , here i am giving you direct link for downloading.