0

我正在尝试使用PUT上传带有 Java 的文件,服务器进行 Digest 身份验证。我想保持精简,所以我尝试使用HttpURLConnection。

public void putData(String path, byte [] data) throws IOException, MalformedURLException {

Authenticator.setDefault(new Authenticator() {
      protected PasswordAuthentication getPasswordAuthentication() {
          return new PasswordAuthentication(user,password.toCharArray());
      }});

  debug("Default authenticator set");
  //Safeguard against double slashes
  if (path.startsWith("/")) {
   path = path.replaceFirst("/","");
  }

  debug(hostname + path);
  URL url = new URL(hostname + path);
  HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  debug("HttpURLConnection acquired");
  conn.setDoOutput(true);
        conn.setDoInput(true);

  conn.setRequestMethod("PUT");
  conn.setRequestProperty("Content-Length",String.valueOf(data.length));
  conn.setRequestProperty("Content-type","application/binary");
  conn.setFixedLengthStreamingMode(data.length);
  conn.connect();

  debug("Properties set");
  OutputStream out = conn.getOutputStream();
  debug("Outputstrem acquired");
  out.write(data,0,data.length);
  out.flush();
  out.close();
  debug("Data written, stream closed."); 
 }

出于某种原因,这无可救药地失败了:我看到 401 又回来了,然后就完成了。如果我禁用授权,相同的代码可以工作。使用摘要身份验证下载具有类似代码的文件“正常工作”。有任何想法吗?我真的不想开始使用下一个这么多的库,比如来自 Apache 的 htclient 左右(......现在是 2010 年......你希望带有摘要 authN 的 http 请求可以在任何标准库中工作)。

4

1 回答 1

1

您至少应该在conn.getInputStream()方法结束时尝试强制评估服务器响应。否则,将无法正确检测到来自服务器的潜在错误消息。

于 2010-09-23T12:53:32.543 回答