com.github.kevinsawicki.http.HttpRequest.byteStream()方法的使用及代码示例

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

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

HttpRequest.byteStream介绍

[英]Create byte array output stream
[中]

代码示例

代码示例来源:origin: com.github.kevinsawicki/http-request

/**
 * Get response as byte array
 *
 * @return byte array
 * @throws HttpRequestException
 */
public byte[] bytes() throws HttpRequestException {
 final ByteArrayOutputStream output = byteStream();
 try {
  copy(buffer(), output);
 } catch (IOException e) {
  throw new HttpRequestException(e);
 }
 return output.toByteArray();
}

代码示例来源:origin: lkorth/httpebble-android

/**
 * Get response as byte array
 *
 * @return byte array
 * @throws HttpRequestException
 */
public byte[] bytes() throws HttpRequestException {
  final ByteArrayOutputStream output = byteStream();
  try {
    copy(buffer(), output);
  } catch (IOException e) {
    throw new HttpRequestException(e);
  }
  return output.toByteArray();
}

代码示例来源:origin: tcking/GiraffePlayer2

/**
 * Get response as byte array
 *
 * @return byte array
 * @throws HttpRequestException
 */
public byte[] bytes() throws HttpRequestException {
  final ByteArrayOutputStream output = byteStream();
  try {
    copy(buffer(), output);
  } catch (IOException e) {
    throw new HttpRequestException(e);
  }
  return output.toByteArray();
}

代码示例来源:origin: com.restfuse/com.eclipsesource.restfuse

/**
 * Get response as byte array
 *
 * @return byte array
 * @throws HttpRequestException
 */
public byte[] bytes() throws HttpRequestException {
 final ByteArrayOutputStream output = byteStream();
 try {
  copy(buffer(), output);
 } catch (IOException e) {
  throw new HttpRequestException(e);
 }
 return output.toByteArray();
}

代码示例来源:origin: com.github.kevinsawicki/http-request

/**
 * Get response as {@link String} in given character set
 * <p>
 * This will fall back to using the UTF-8 character set if the given charset
 * is null
 *
 * @param charset
 * @return string
 * @throws HttpRequestException
 */
public String body(final String charset) throws HttpRequestException {
 final ByteArrayOutputStream output = byteStream();
 try {
  copy(buffer(), output);
  return output.toString(getValidCharset(charset));
 } catch (IOException e) {
  throw new HttpRequestException(e);
 }
}

代码示例来源:origin: com.restfuse/com.eclipsesource.restfuse

/**
 * Get response as {@link String} in given character set
 * <p>
 * This will fall back to using the UTF-8 character set if the given charset
 * is null
 *
 * @param charset
 * @return string
 * @throws HttpRequestException
 */
public String body(final String charset) throws HttpRequestException {
 final ByteArrayOutputStream output = byteStream();
 try {
  copy(buffer(), output);
  return output.toString(getValidCharset(charset));
 } catch (IOException e) {
  throw new HttpRequestException(e);
 }
}

代码示例来源:origin: lkorth/httpebble-android

/**
 * Get response as {@link String} in given character set
 * <p/>
 * This will fall back to using the UTF-8 character set if the given charset
 * is null
 *
 * @param charset
 * @return string
 * @throws HttpRequestException
 */
public String body(final String charset) throws HttpRequestException {
  final ByteArrayOutputStream output = byteStream();
  try {
    copy(buffer(), output);
    return output.toString(getValidCharset(charset));
  } catch (IOException e) {
    throw new HttpRequestException(e);
  }
}

代码示例来源:origin: tcking/GiraffePlayer2

/**
 * Get response as {@link String} in given character set
 * <p>
 * This will fall back to using the UTF-8 character set if the given charset
 * is null
 *
 * @param charset
 * @return string
 * @throws HttpRequestException
 */
public String body(final String charset) throws HttpRequestException {
  final ByteArrayOutputStream output = byteStream();
  try {
    copy(buffer(), output);
    return output.toString(getValidCharset(charset));
  } catch (IOException e) {
    throw new HttpRequestException(e);
  }
}

相关文章

微信公众号

最新文章

更多

HttpRequest类方法