What is the purpose of setDoInput and setDoOutput in Java HttpURLConnection?

后端 未结 3 1060
不知归路
不知归路 2020-12-29 18:55

What is the function or purpose of HttpURLConnection.setDoInput and HttpURLConnection.setDoOutput?

3条回答
  •  [愿得一人]
    2020-12-29 19:36

    From the documentation for URLConnection:

    Set the DoInput flag to true if you intend to use the URL connection for input, false if not. The default is true.

    Set the DoOutput flag to true if you intend to use the URL connection for output, false if not. The default is false.

    As for the actual purpose, it doesn't appear that anything in the Oracle code checks on the doInput variable. However the doOutput default of false will prevent you from calling getOutputStream() necessary for HTTP POST requests. So it is a way to indicate ahead of time that you expect to write to an OutputStream without actually establishing it.

提交回复
热议问题