尝试使用Jersey客户端下载文件时出现HTTP 400错误

时间:2014-12-01 09:04:18

标签: java web-services rest jersey-client

如果我简单地在Chrome浏览器中粘贴urlString值,我就可以下载csv文件了。

但是,当我尝试使用相同的urlString下载代码并使用以下代码时,response.getStatus()400错误

        WebResource webResource = client.resource(urlString);
        WebResource.Builder wb=webResource.accept("application/json,application/pdf,text/plain,image/jpeg,application/xml,application/vnd.ms-excel");
        ClientResponse response =wb.get(ClientResponse.class);


        if (response.getStatus() != 200) {
            throw new RuntimeException("HTTP error code : "
                    + response.getStatus());
        }

        InputStream input = response.getEntity(InputStream.class);

        byte[] byteArray = org.apache.commons.io.IOUtils.toByteArray(input);

        FileOutputStream fos = new FileOutputStream(new File(fileToSave));
        fos.write(byteArray);
        fos.flush();
        fos.close();

尽管如此,我在接受参数中不需要超过text/plain,只是为了扩大接受,我添加了更多。

花了很多时间试图找到问题,请指教。 有许多类似的问题,但没有一个能解决我的问题。

我正在使用以下球衣版

    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-client</artifactId>
    <version>1.18.2</version>

1 个答案:

答案 0 :(得分:0)

原则上你的代码很好。

请参阅 https://github.com/WolfgangFahl/Mediawiki-Japi/blob/master/src/test/java/com/bitplan/mediawiki/japi/TestGetCSV.java#L49

它被包含在JUnit测试中。 (见下面的代码)。 如果您现在将您的网址放入getCSVAsFile(网址),则可以告诉您特定网址的内容。可能是

WebResource.Builder wb=webResource.accept("application/json,application/pdf,text/plain,image/jpeg,application/xml,application/vnd.ms-excel");

线是罪魁祸首。我开始注释它,因为它告诉您正在调用的Web服务向您发送特定的Representation / MediaType。如果没有匹配,您可能会收到错误。

<强>的JUnit试验

package com.bitplan.mediawiki.japi;
import static org.junit.Assert.*;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.logging.Level;
import org.apache.commons.io.FileUtils;
import org.junit.Test;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.client.apache.ApacheHttpClient;
/**
* test CSV access for test code
* @author wf
*
*/
public class TestGetCSV  {
private ApacheHttpClient client;

/**
* get the a CSV File from the given urlString
* http://stackoverflow.com/questions/27224870/getting-http-400-error-when-trying-to-download-file-using-jersey-client
*
* @param urlString
* @param csvFile
* @throws IOException
*/
public void getCSVAsFile(String urlString, File csvFile) throws IOException {
  client = ApacheHttpClient.create();
  WebResource webResource = client.resource(urlString);
  WebResource.Builder wb = webResource
.accept("application/json,application/pdf,text/plain,image/jpeg,application/xml,application/vnd.ms-excel");
  ClientResponse response = wb.get(ClientResponse.class);
  if (response.getStatus() != 200) {
  throw new RuntimeException("HTTP error code : " + response.getStatus());
  }
  InputStream input = response.getEntity(InputStream.class);
  byte[] byteArray = org.apache.commons.io.IOUtils.toByteArray(input);
  FileOutputStream fos = new FileOutputStream(csvFile);
  fos.write(byteArray);
  fos.flush();
  fos.close();
}

@Test
public void testGetCSV() throws IOException {
  boolean debug=false;
  File csvFile=new File("/tmp/ExampleWikis.csv");
  getCSVAsFile("http://mediawiki-japi.bitplan.com/mediawiki-japi/index.php/Special:Ask/-5B-5BCategory:ExampleWiki-5D-5D-20-5B-5Bsiteurl::%2B-5D-5D/-3FSiteurl/-3FWikiid/format%3Dcsv/offset%3D0", csvFile);
  String csv=FileUtils.readFileToString(csvFile);
  if (debug)
    System.out.println(csv);
  assertTrue(csv.contains("http://waihekepedia.org/"));
}