编程语言
首页 > 编程语言> > java-通过URLConnection写入图像

java-通过URLConnection写入图像

作者:互联网

我正在尝试通过HttpURLConnection写入图像.

我知道如何写文字,但尝试时遇到了实际问题
写图像

我已经使用ImageIO成功写入本地HD:

但是我试图通过ImageIO在URL上写Image并失败

URL url = new URL(uploadURL);
connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setDoInput(true);
connection.setUseCaches(false);
connection.setRequestProperty("Content-Type", "multipart/form-data;
                                            boundary=" + boundary);
output = new DataOutputStream(connection.getOutputStream());
output.writeBytes("--" + boundary + "\r\n");
output.writeBytes("Content-Disposition: form-data; name=\"" + FIELD_NAME + "\";
                                            filename=\"" + fileName + "\"\r\n");
output.writeBytes("Content-Type: " + dataMimeType + "\r\n");
output.writeBytes("Content-Transfer-Encoding: binary\r\n\r\n");
ImageIO.write(image, imageType, output);

uploadURL是服务器上的一个asp页面的url,它将使用“ content-Disposition:part.”中给出的文件名上传图像.

现在,当我发送此邮件时,则在ASP页面中找到请求并找到文件名.但找不到要上传的文件.

问题在于,当ImageIO在URL上进行写入时,ImageIO正在写入的文件的名称将是什么,

因此,请帮助我ImageIO如何在URLConnection上写入图像,以及如何知道必须在asp页中使用的文件名称才能上传文件

感谢您抽出宝贵时间阅读这篇文章
迪利普·阿加瓦尔

解决方法:

首先,我相信您应该在写入图像后调用io.flush(),然后再调用io.close().

第二内容类型对我来说似乎很奇怪.您似乎在尝试提交实际上是图像的表单.我不知道您的ASP期望什么,但是通常,当我编写应通过HTTP传输文件的代码时,我会发送适当的内容类型,例如图片/ jpeg.

例如,这是我从一个小实用程序中提取的代码片段,该小实用程序是我编写的并且在当前工作中正在使用:

    URL url = new URL("http://localhost:8080/handler");
    HttpURLConnection con = (HttpURLConnection)url.openConnection();
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setUseCaches(false);
    con.setRequestProperty("Content-Type", "image/jpeg");
    con.setRequestMethod("POST");
    InputStream in = new FileInputStream("c:/temp/poc/img/mytest2.jpg");
    OutputStream out = con.getOutputStream();
    copy(in, con.getOutputStream());
    out.flush();
    out.close();
    BufferedReader r = new BufferedReader(new  InputStreamReader(con.getInputStream()));


            // obviously it is not required to print the response. But you have
            // to call con.getInputStream(). The connection is really established only
            // when getInputStream() is called.
    System.out.println("Output:");
    for (String line = r.readLine(); line != null;  line = r.readLine()) {
        System.out.println(line);
    }

我在这里使用了从Jakarta IO utils获取的copy()方法.这是供参考的代码:

protected static long copy(InputStream input, OutputStream output)
        throws IOException {
    byte[] buffer = new byte[12288]; // 12K
    long count = 0L;
    int n = 0;
    while (-1 != (n = input.read(buffer))) {
        output.write(buffer, 0, n);
        count += n;
    }
    return count;
}

显然,服务器端必须准备好直接从POST主体读取图像内容.
我希望这有帮助.

标签:sockets,image-processing,httpurlconnection,urlconnection,java
来源: https://codeday.me/bug/20191102/1995271.html