从HttpURLConnection获取InputStream对象时出现FileNotFoundException

时间:2011-03-21 14:43:17

标签: java inputstream httpurlconnection filenotfoundexception

我正在尝试使用HttpURLConnection向网址发送帖子请求(在java中使用cUrl)。 请求的内容是xml,在结束时,应用程序处理xml并将记录存储到数据库,然后以xml字符串的形式发回响应。该应用程序在本地托管在apache-tomcat上。

当我从终端执行此代码时,会按预期将一行添加到数据库中。但是从连接

获取InputStream时会抛出异常,如下所示
java.io.FileNotFoundException: http://localhost:8080/myapp/service/generate
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1401)
    at org.kodeplay.helloworld.HttpCurl.main(HttpCurl.java:30)

这是代码

public class HttpCurl {
    public static void main(String [] args) {

        HttpURLConnection con;

        try {
            con = (HttpURLConnection) new URL("http://localhost:8080/myapp/service/generate").openConnection();
            con.setRequestMethod("POST");
            con.setDoOutput(true);
            con.setDoInput(true);

            File xmlFile = new File("test.xml");

            String xml = ReadWriteTextFile.getContents(xmlFile);                

            con.getOutputStream().write(xml.getBytes("UTF-8"));
            InputStream response = con.getInputStream();

            BufferedReader reader = new BufferedReader(new InputStreamReader(response));
            for (String line ; (line = reader.readLine()) != null;) {
                System.out.println(line);
            }
            reader.close();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
  }

它令人困惑,因为异常被追溯到行InputStream response = con.getInputStream();并且似​​乎没有涉及FileNotFoundException的任何文件。

当我尝试直接打开与xml文件的连接时,它不会抛出此异常。

服务应用程序使用spring框架和Jaxb2Marshaller来创建响应xml。

类ReadWriteTextFile取自here

感谢。

修改 好吧,它将数据保存在数据库中,并同时发回404响应状态代码。

我也尝试使用php进行卷曲并打印出CURLINFO_HTTP_CODE,结果是200.

关于如何调试此问题的任何想法?服务和客户端都在本地服务器上。

解决: 在SO本身引用answer后我可以解决问题。

当连接到具有非标准端口的URL时,似乎HttpURLConnection始终返回404响应。

添加这些行解决了它

con.setRequestProperty("User-Agent","Mozilla/5.0 ( compatible ) ");
con.setRequestProperty("Accept","*/*");

8 个答案:

答案 0 :(得分:120)

我不知道您的Spring / JAXB组合,但普通的REST Web服务不会在POST / PUT上返回响应主体,只是response status。你想确定它而不是身体。

替换

InputStream response = con.getInputStream();

通过

int status = con.getResponseCode();

HTTP规范中提供了所有可用的状态代码及其含义,如之前链接的那样。 Web服务本身也应该附带一些文档,概述Web服务支持的所有状态代码及其特殊含义(如果有的话)。

如果状态以4nn5nn开头,则您希望使用getErrorStream()来阅读可能包含错误详情的回复正文。

InputStream error = con.getErrorStream();

答案 1 :(得分:45)

FileNotFound只是一个不幸的例外,用于表示Web服务器返回了404.

答案 2 :(得分:27)

对于将来遇到此问题的任何人,原因是因为状态代码是404(或者在我的情况下是500)。当状态代码不是200时,InpuStream函数似乎会抛出错误。

在我的情况下,我控制自己的服务器并返回500状态代码以指示发生错误。尽管我还发送了一个带有详细说明错误的字符串消息的正文,但inputstream抛出了一个错误,无论正文是否完全可读。

如果你控制你的服务器,我想这可以通过发送一个200状态代码然后处理字符串错误响应来处理。

答案 3 :(得分:5)

对于遇到此问题的其他人来说,在尝试将SOAP请求标头发送到SOAP服务时,我也遇到了同样的情况。问题是代码中的错误顺序,我在发送XML主体之前首先请求了输入流。在下面截取的代码中,InputStream in = conn.getInputStream();行紧跟在ByteArrayOutputStream out = new ByteArrayOutputStream();之后,这是不正确的顺序。

ByteArrayOutputStream out = new ByteArrayOutputStream();
// send SOAP request as part of HTTP body 
byte[] data = request.getHttpBody().getBytes("UTF-8");
conn.getOutputStream().write(data); 

if (conn.getResponseCode() != HttpURLConnection.HTTP_OK) {
  Log.d(TAG, "http response code is " + conn.getResponseCode());
  return null;
}

InputStream in = conn.getInputStream();
在这种情况下,

FileNotFound是编码HTTP响应代码400的一种不幸方式。

答案 4 :(得分:4)

在这种情况下,FileNotFound意味着您从服务器获得了404 - 可能是服务器不喜欢“POST”请求吗?

答案 5 :(得分:0)

解决方案:
只需更改电脑 IP localhost 即可
如果你想知道这个: Windows + r> cmd> IPCONFIG
示例:http:// 192.168.0.107 /directory/service/program.php?action=sendSomething
只需将 192.168.0.107 替换为您自己的IP(不要尝试 127.0.0.1 ,因为它与 localhost 相同)

答案 6 :(得分:0)

FileNotFound 在这种情况下意味着你​​从你的服务器得到了一个 404

您必须设置请求内容类型标头参数 将“content-type”请求头设置为“application/json”,以JSON形式发送请求内容。

必须设置此参数才能以 JSON 格式发送请求正文。

如果不这样做,服务器将返回 HTTP 状态代码“400-bad request”。

con.setRequestProperty("Content-Type", "application/json; utf-8");

完整脚本 ->

public class SendDeviceDetails extends AsyncTask<String, Void, String> {

@Override
protected String doInBackground(String... params) {

    String data = "";
    String url = "";

    HttpURLConnection con = null;
    try {

        // From the above URL object,
        // we can invoke the openConnection method to get the HttpURLConnection object.
        // We can't instantiate HttpURLConnection directly, as it's an abstract class:
        con = (HttpURLConnection)new URL(url).openConnection();
        //To send a POST request, we'll have to set the request method property to POST:
        con.setRequestMethod("POST");

        // Set the Request Content-Type Header Parameter
        // Set “content-type” request header to “application/json” to send the request content in JSON form.
        // This parameter has to be set to send the request body in JSON format.
        //Failing to do so, the server returns HTTP status code “400-bad request”.
        con.setRequestProperty("Content-Type", "application/json; utf-8");
        //Set Response Format Type
        //Set the “Accept” request header to “application/json” to read the response in the desired format:
        con.setRequestProperty("Accept", "application/json");

        //To send request content, let's enable the URLConnection object's doOutput property to true.
        //Otherwise, we'll not be able to write content to the connection output stream:
        con.setDoOutput(true);

        //JSON String need to be constructed for the specific resource.
        //We may construct complex JSON using any third-party JSON libraries such as jackson or org.json
        String jsonInputString = params[0];

        try(OutputStream os = con.getOutputStream()){
            byte[] input = jsonInputString.getBytes("utf-8");
            os.write(input, 0, input.length);
        }

        int code = con.getResponseCode();
        System.out.println(code);

        //Get the input stream to read the response content.
        // Remember to use try-with-resources to close the response stream automatically.
        try(BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), "utf-8"))){
            StringBuilder response = new StringBuilder();
            String responseLine = null;
            while ((responseLine = br.readLine()) != null) {
                response.append(responseLine.trim());
            }
            System.out.println(response.toString());
        }

    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        if (con != null) {
            con.disconnect();
        }
    }

    return data;
}

@Override
protected void onPostExecute(String result) {
    super.onPostExecute(result);
    Log.e("TAG", result); // this is expecting a response code to be sent from your server upon receiving the POST data
}

并调用它

new SendDeviceDetails().execute("");

您可以在本教程中找到更多详细信息

https://www.baeldung.com/httpurlconnection-post

答案 7 :(得分:-3)

请更改

con = (HttpURLConnection) new URL("http://localhost:8080/myapp/service/generate").openConnection();

con = (HttpURLConnection) new URL("http://YOUR_IP:8080/myapp/service/generate").openConnection();