SDK中关于HttpURLConnection.setDoInput(true)和HttpURLConnection.setDoOutput(true)的描述

本文详细介绍了Java中URLConnection类的setDoInput与setDoOutput方法。这两个方法分别用于设置URL连接是否用于输入和输出,默认情况下,输入设为true而输出设为false。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

直接看SDK java.net.URLConnection


  • setDoInput
    public void setDoInput(boolean doinput)
    Sets the value of the doInput field for this URLConnection to the specified value.

    A URL connection can be used for input and/or output. Set the DoInput flag to true if you intend to use the URL connection for input, false if not. The default is true.

    Parameters:
    doinput - the new value.
    Throws:
    IllegalStateException - if already connected
    See Also:
    doInput, getDoInput()
  • setDoOutput
    public void setDoOutput(boolean dooutput)
    Sets the value of the doOutput field for this URLConnection to the specified value.

    A URL connection can be used for input and/or output. Set the DoOutput flag to true if you intend to use the URL connection for output, false if not. The default is false.

    Parameters:
    dooutput - the new value.
    Throws:
    IllegalStateException - if already connected
    See Also:
    getDoOutput()
合起来翻译一下就是,一个URL连接可以用来输入或输出。
setDoInput(boolean doinput)如果你打算输入,则设置为ture,否则false。默认true
setDoOutput(boolean dooutput)如果你打算输出,则设置为true,否则false。默认false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值