java.io.ByteArrayOutputStream.expand()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(9.1k)|赞(0)|评价(0)|浏览(189)

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

ByteArrayOutputStream.expand介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: robovm/robovm

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: MobiVM/robovm

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: ibinti/bugvm

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: junkdog/artemis-odb

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte the byte to be written.
 */
@Override
public void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte
 *            the byte to be written.
 */
@Override
public synchronized void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
 * low order byte of {@code oneByte} is written.
 *
 * @param oneByte the byte to be written.
 */
@Override
@JTranscSync
public void write(int oneByte) {
  if (count == buf.length) {
    expand(1);
  }
  buf[count++] = (byte) oneByte;
}

代码示例来源:origin: junkdog/artemis-odb

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer the buffer to be written.
 * @param offset the initial position in {@code buffer} to retrieve bytes.
 * @param len    the number of bytes of {@code buffer} to write.
 * @throws NullPointerException      if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException if {@code offset < 0} or {@code len < 0}, or if
 *                                   {@code offset + len} is greater than the length of
 *                                   {@code buffer}.
 */
@Override
public void write(byte[] buffer, int offset, int len) {
  checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: MobiVM/robovm

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: ibinti/bugvm

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer
 *            the buffer to be written.
 * @param offset
 *            the initial position in {@code buffer} to retrieve bytes.
 * @param len
 *            the number of bytes of {@code buffer} to write.
 * @throws NullPointerException
 *             if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code len < 0}, or if
 *             {@code offset + len} is greater than the length of
 *             {@code buffer}.
 */
@Override
public synchronized void write(byte[] buffer, int offset, int len) {
  Arrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Writes {@code count} bytes from the byte array {@code buffer} starting at
 * offset {@code index} to this stream.
 *
 * @param buffer the buffer to be written.
 * @param offset the initial position in {@code buffer} to retrieve bytes.
 * @param len    the number of bytes of {@code buffer} to write.
 * @throws NullPointerException      if {@code buffer} is {@code null}.
 * @throws IndexOutOfBoundsException if {@code offset < 0} or {@code len < 0}, or if
 *                                   {@code offset + len} is greater than the length of
 *                                   {@code buffer}.
 */
@Override
@JTranscSync
public void write(byte[] buffer, int offset, int len) {
  JTranscArrays.checkOffsetAndCount(buffer.length, offset, len);
  if (len == 0) {
    return;
  }
  expand(len);
  System.arraycopy(buffer, offset, buf, this.count, len);
  this.count += len;
}

相关文章