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

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

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

HttpConnection.writeLine介绍

[英]Writes "\r\n".getBytes() to the output stream.
[中]写入“\r\n”。将getBytes()添加到输出流。

代码示例

代码示例来源: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 printLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

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

public void writeLine()
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.writeLine();
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

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

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

代码示例来源: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

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

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

/**
 * Writes the specified String (as bytes), followed by
 * <tt>"\r\n".getBytes()</tt> to the output stream.
 *
 * @param data the data 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 printLine(String data, String charset)
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine(String)");
  writeLine(EncodingUtil.getBytes(data, charset));
}

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

writeRequestLine(state, conn);
writeRequestHeaders(state, conn);
conn.writeLine(); // close head
if (Wire.HEADER_WIRE.enabled()) {
  Wire.HEADER_WIRE.output("\r\n");

代码示例来源: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 printLine()
    throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

代码示例来源: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 printLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

代码示例来源: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 printLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

代码示例来源:origin: 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 printLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

代码示例来源:origin: org.wso2.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 printLine()
  throws IOException, IllegalStateException {
  LOG.trace("enter HttpConnection.printLine()");
  writeLine();
}

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

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

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

public void writeLine()
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.writeLine();
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.sonatype.nexus/nexus-proxy

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

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

public void writeLine()
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.writeLine();
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

代码示例来源:origin: org.sonatype.nexus/nexus-proxy

public void writeLine()
  throws IOException, IllegalStateException {
  if (hasConnection()) {
    wrappedConnection.writeLine();
  } else {
    throw new IllegalStateException("Connection has been released");
  }
}

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

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

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

/**
 * 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: org.wso2.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();
}

相关文章

微信公众号

最新文章

更多

HttpConnection类方法