org.apache.commons.httpclient.HttpConnection.write()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(103)

本文整理了Java中org.apache.commons.httpclient.HttpConnection.write()方法的一些代码示例,展示了HttpConnection.write()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpConnection.write()方法的具体详情如下:
包路径:org.apache.commons.httpclient.HttpConnection
类名称:HttpConnection
方法名:write

HttpConnection.write介绍

[英]Writes the specified bytes to the output stream.
[中]将指定的字节写入输出流。

代码示例

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Writes the specified bytes, followed by <tt>"\r\n".getBytes()</tt> to the
 * output stream.
 *
 * @param data the bytes to be written
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine(byte[] data)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine(byte[])");
  write(data);
  writeLine();
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Writes <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine()");
  write(CRLF);
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Writes the specified bytes to the output stream.
 *
 * @param data the data to be written
 * @throws IllegalStateException if not connected
 * @throws IOException if an I/O problem occurs
 * @see #write(byte[],int,int)
 */
public void write(byte[] data)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.write(byte[])");
  this.write(data, 0, data.length);
}

代码示例来源:origin: commons-httpclient/commons-httpclient

public void write(byte[] data, int offset, int length)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data, offset, length);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: commons-httpclient/commons-httpclient

public void write(byte[] data)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Writes the specified String (as bytes) to the output stream.
 *
 * @param data the string to be written
 * @param charset the charset to use for writing the data
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 * 
 * @since 3.0
 */
public void print(String data, String charset)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.print(String)");
  write(EncodingUtil.getBytes(data, charset));
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * @deprecated Use {@link #print(String, String)}
 * 
 * Writes the specified String (as bytes) to the output stream.
 *
 * @param data the string to be written
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void print(String data)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.print(String)");
  write(EncodingUtil.getBytes(data, "ISO-8859-1"));
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Writes the specified bytes to the output stream.
 *
 * @param data the data to be written
 * @throws IllegalStateException if not connected
 * @throws IOException if an I/O problem occurs
 * @see #write(byte[],int,int)
 */
public void write(byte[] data)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.write(byte[])");
  this.write(data, 0, data.length);
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Writes the specified bytes to the output stream.
 *
 * @param data the data to be written
 * @throws IllegalStateException if not connected
 * @throws IOException if an I/O problem occurs
 * @see #write(byte[],int,int)
 */
public void write(byte[] data)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.write(byte[])");
  this.write(data, 0, data.length);
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Writes <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine()");
  write(CRLF);
}

代码示例来源:origin: org.mule.transports/mule-transport-http

/**
 * Writes <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine()
    throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine()");
  write(CRLF);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Writes <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine()");
  write(CRLF);
}

代码示例来源:origin: org.zaproxy/zap

/**
 * Writes <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @throws IllegalStateException if the connection is not open
 * @throws IOException if an I/O problem occurs
 */
public void writeLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.writeLine()");
  write(CRLF);
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

public void write(byte[] data, int offset, int length)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data, offset, length);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.apache.commons/httpclient

public void write(byte[] data, int offset, int length)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data, offset, length);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

public void write(byte[] data)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.apache.commons/httpclient

public void write(byte[] data)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

public void write(byte[] data, int offset, int length)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data, offset, length);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

public void write(byte[] data)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

public void write(byte[] data)
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.write(data);
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

相关文章

微信公众号

最新文章

更多

HttpConnection类方法