将文件上传到PHP源时发送参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文件上传到PHP源时发送参数相关的知识,希望对你有一定的参考价值。

我正在使用这个类从我的android应用程序上传图像到php服务器。

但我想发送一些参数,如自定义文件名,上传文件的用户等。

有没有办法在上传文件时发送一些参数?

示例:name = newimage&uploadedby = username

private class UploadFileAsync extends AsyncTask<String, Void, String> {

@Override
protected String doInBackground(String... params) {

    try {
        String sourceFileUri = "/mnt/sdcard/abc.png";

        HttpURLConnection conn = null;
        DataOutputStream dos = null;
        String lineEnd = "
";
        String twoHyphens = "--";
        String boundary = "*****";
        int bytesRead, bytesAvailable, bufferSize;
        byte[] buffer;
        int maxBufferSize = 1 * 1024 * 1024;
        File sourceFile = new File(sourceFileUri);

        if (sourceFile.isFile()) {

            try {
                String upLoadServerUri = "http://website.com/abc.php?";

                // open a URL connection to the Servlet
                FileInputStream fileInputStream = new FileInputStream(
                        sourceFile);
                URL url = new URL(upLoadServerUri);

                conn = (HttpURLConnection) url.openConnection();
                conn.setDoInput(true); // Allow Inputs
                conn.setDoOutput(true); // Allow Outputs
                conn.setUseCaches(false); // Don't use a Cached Copy
                conn.setRequestMethod("POST");
                conn.setRequestProperty("Connection", "Keep-Alive");
                conn.setRequestProperty("ENCTYPE",
                        "multipart/form-data");
                conn.setRequestProperty("Content-Type",
                        "multipart/form-data;boundary=" + boundary);
                conn.setRequestProperty("bill", sourceFileUri);

                dos = new DataOutputStream(conn.getOutputStream());

                dos.writeBytes(twoHyphens + boundary + lineEnd);
                dos.writeBytes("Content-Disposition: form-data; name="bill";filename=""
                        + sourceFileUri + """ + lineEnd);

                dos.writeBytes(lineEnd);

                bytesAvailable = fileInputStream.available();

                bufferSize = Math.min(bytesAvailable, maxBufferSize);
                buffer = new byte[bufferSize];

                bytesRead = fileInputStream.read(buffer, 0, bufferSize);

                while (bytesRead > 0) {

                    dos.write(buffer, 0, bufferSize);
                    bytesAvailable = fileInputStream.available();
                    bufferSize = Math
                            .min(bytesAvailable, maxBufferSize);
                    bytesRead = fileInputStream.read(buffer, 0,
                            bufferSize);

                }

                dos.writeBytes(lineEnd);
                dos.writeBytes(twoHyphens + boundary + twoHyphens
                        + lineEnd);

                serverResponseCode = conn.getResponseCode();
                String serverResponseMessage = conn
                        .getResponseMessage();

                if (serverResponseCode == 200) {

                    //Toast.makeText(ctx, "File Upload Complete.",
                    //      Toast.LENGTH_SHORT).show();



                }

                fileInputStream.close();
                dos.flush();
                dos.close();

            } catch (Exception e) {

                e.printStackTrace();

            }

        }


    } catch (Exception ex) {

        ex.printStackTrace();
    }
    return "Executed";
}

}

是否有任何方法可以使用标头请求执行此操作,如下所示:

conn.setRequestProperty("parameters","name=filename&uploadedby=username");
答案

对的,这是可能的

我不是Java开发人员,但在PHP中,您可以通过两种方式接收此类数据:作为URL中的参数,将在PHP中的$ _GET数组中提供示例,将您的URL更改为:

String upLoadServerUri = "http://website.com/abc.php?filename=blabla&anotherparam=1234";

然后用PHP:echo $_GET['filename']。如果您要发布请求,也可以使用$ _GET。

或/你可以在POST中执行此操作。您的POST请求可以包含所需数量的额外参数。 Here is an example你怎么能这样做。

以上是关于将文件上传到PHP源时发送参数的主要内容,如果未能解决你的问题,请参考以下文章

PHP文件上传,发送formdata对象

如何将 curl 上传进度发送到要显示的 ajax

提交带有上传图片选项的表单时出错。 PHP 代码点火器

将当前网页发送到桌面的代码

在邮递员中使用 php curl 将文件上传到 Nextcloud 但上传的文件为空

AsyncHttpResponseHandler 未定义发送参数;RequestParams,android,java,php