繁体   English   中英

如何使用Java应用程序将本地.png发送到服务器上的.php文件?

[英]How to send local .png to .php file on server using java application?

我有一个本地.png文件,我希望使用POST数据将其发送到.php脚本,该脚本会将数据保存到服务器上的.png文件中。 我该怎么做呢? 我需要编码吗? 我所拥有的只是一个文件和一种发布数据的方式。

这是我发送.png的方法:

public static byte[] imageToByte(File file) throws FileNotFoundException {
    FileInputStream fis = new FileInputStream(file);
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    byte[] buf = new byte[1024];
    try {
        for (int readNum; (readNum = fis.read(buf)) != -1;) {
            bos.write(buf, 0, readNum);
        }
    } catch (IOException ex) {
    }
    byte[] bytes = bos.toByteArray();
    return bytes;
}

public static void sendPostData(String url, HashMap<String, String> data)
        throws Exception {
    URL siteUrl = new URL(url);
    HttpURLConnection conn = (HttpURLConnection) siteUrl.openConnection();
    conn.setRequestMethod("POST");
    conn.setDoOutput(true);
    conn.setDoInput(true);

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

    Set keys = data.keySet();
    Iterator keyIter = keys.iterator();
    String content = "";
    for (int i = 0; keyIter.hasNext(); i++) {
        Object key = keyIter.next();
        if (i != 0) {
            content += "&";
        }
        content += key + "=" + URLEncoder.encode(data.get(key), "UTF-8");
    }
    System.out.println(content);
    out.writeBytes(content);
    out.flush();
    out.close();
    BufferedReader in = new BufferedReader(new InputStreamReader(
            conn.getInputStream()));
    String line = "";
    while ((line = in.readLine()) != null) {
        System.out.println(line);
    }
    in.close();
}

PHP脚本:

<? 
// Config
$uploadBase = "../screenshots/";
$uploadFilename = $_GET['user'] . ".png";
$uploadPath = $uploadBase . $uploadFilename;

// Upload directory
if(!is_dir($uploadBase))
mkdir($uploadBase);

// Grab the data
$incomingData = $_POST['img'];

// Valid data?
if(!$incomingData || !isset($_POST['img']))
die("No input data");

// Write to disk
$fh = fopen($uploadPath, 'w') or die("Error opening file");
fwrite($fh, $incomingData) or die("Error writing to file");
fclose($fh) or die("Error closing file");

echo "Success";
 ?>

我的简约代码有效:

$body = file_get_contents('php://input');
$fh = fopen('file.txt', 'w') or die("Error opening fil
e");
fwrite($fh, $body) or die("Error writing to file");
fclose($fh)

curl --upload-file download.txt http://example.com/upload.php

但是,将方法设置为PUT。

我必须承认,我很惊讶您几乎得到了正确的文件。 实际上,当您使用浏览器发送文件时,表单标记具有定义的编码: enctype="multipart/form-data" 我不知道它是如何工作的(它在http://tools.ietf.org/html/rfc2388中定义),但是它包括对文件进行编码(例如,在Base64中)。 无论如何,如果您使用HTTP客户端库(例如来自Apache HttpComponents的库),则可以忘记内部结构

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM