Php Android多部分实体图像上载错误

Php Android多部分实体图像上载错误,php,android,image,multipartentity,Php,Android,Image,Multipartentity,我在将图像上载到服务器时遇到问题。当我上传它时,我得到了HTTP 1.1200 OK,但是当我等待响应时,我看到文件没有上传,因为同名文件已经存在或者不是有效类型。这是我的异步任务和php服务器代码 private class UploadTask extends AsyncTask<Bitmap, Void, Void> { protected Void doInBackground(Bitmap... bitmaps) { if (bitmaps[0]

我在将图像上载到服务器时遇到问题。当我上传它时,我得到了HTTP 1.1200 OK,但是当我等待响应时,我看到文件没有上传,因为同名文件已经存在或者不是有效类型。这是我的异步任务和php服务器代码

private class UploadTask extends AsyncTask<Bitmap, Void, Void> {

    protected Void doInBackground(Bitmap... bitmaps) {
        if (bitmaps[0] == null)
            return null;
        setProgress(0);

        Bitmap bitmap = bitmaps[0];
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream); // convert Bitmap to ByteArrayOutputStream
        InputStream in = new ByteArrayInputStream(stream.toByteArray()); // convert ByteArrayOutputStream to ByteArrayInputStream

        DefaultHttpClient httpclient = new DefaultHttpClient();
        try {
            HttpPost httppost = new HttpPost(
                    "http://mapped.guri.sk/imageUpload"); // server

            MultipartEntity reqEntity = new MultipartEntity();
            reqEntity.addPart("myFile",
                    System.currentTimeMillis() + ".jpg", in);
            httppost.setEntity(reqEntity);

            Log.i("TAG", "request " + httppost.getRequestLine());
            try {
                response = httpclient.execute(httppost);
            } catch (ClientProtocolException e) {

                e.printStackTrace();
            } catch (IOException e) {

                e.printStackTrace();
            }
            try {
                if (response != null) {
                    Log.i("TAG", "response " + response.getStatusLine().toString());
                    try {
                        responseBody = EntityUtils.toString(response.getEntity());
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            } finally {

            }
        } finally {

        }

        if (in != null) {
            try {
                in.close();
            } catch (IOException e) {

                e.printStackTrace();
            }
        }

        if (stream != null) {
            try {
                stream.close();
            } catch (IOException e) {

                e.printStackTrace();
            }
        }

        return null;
    }

    @Override
    protected void onProgressUpdate(Void... values) {

        super.onProgressUpdate(values);
    }

    @Override
    protected void onPostExecute(Void result) {

        super.onPostExecute(result);
        Toast.makeText(getApplicationContext(), "response: " + responseBody, Toast.LENGTH_LONG).show();
        //Toast.makeText(MainActivity.this, R.string.uploaded, Toast.LENGTH_LONG).show();
    }
}

这不是将图像发送到服务器的正确方法在上面的imageupload方法中,您将联机获取图像名称而不是图像数据\我如何解决它?我在上找到了这段代码,您是指php方法还是java方法?您需要在android中将图像转换为字符串,并在imageupload方法中将其转换回jpg格式搜索图像转换为字符串&字符串转换为图像
function imageupload(){
$target_dir = "/home/web/files.guri.sk/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
    //echo "File is an image - " . $check["mime"] . ".";
    $uploadOk = 1;
} else {
    echo "File is not an image.";
    $uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 10000000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
    //echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
    echo "http://files.guri.sk/".basename($_FILES["fileToUpload"]["name"]);
} else {
    echo "Sorry, there was an error uploading your file.";
}
}
}