从android发送参数到服务器

时间:2015-07-10 13:24:46

标签: php android server

假设我有这段代码:

 try { // open a URL connection to the Servlet
               FileInputStream fileInputStream = new FileInputStream(sourceFile);
               URL url = new URL(upLoadServerUri);
               conn = (HttpURLConnection) url.openConnection(); // Open a HTTP  connection to  the URL
               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("uploaded_file", fileName); 
               dos = new DataOutputStream(conn.getOutputStream());

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

}

PHP服务器端:

<?php

    $file_name = $_FILES['uploaded_file']['name'];

    if(move_uploaded_file($_FILES['uploaded_file']['tmp_name'], $file_name)) {

        //Save the file details into the database 

        echo "success";
    } else{
        echo "fail";
    }
?>

如何发送多个参数?我不想只发送文件名,我也想发送让我们说的手机号码等。

有没有办法实现这个想法?

0 个答案:

没有答案