Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
115 views
in Technique[技术] by (71.8m points)

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

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

question from:https://stackoverflow.com/questions/5583064/what-is-the-purpose-of-setdoinput-and-setdooutput-in-java-httpurlconnection

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...