java.io.PrintWriter.doWrite()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(153)

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

PrintWriter.doWrite介绍

暂无

代码示例

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes one character to the target. Only the two least significant bytes
 * of the integer {@code oneChar} are written.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param oneChar
 *            the character to write to the target.
 */
@Override
public void write(int oneChar) {
  doWrite(new char[] { (char) oneChar }, 0, 1);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

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

/**
 * Writes {@code count} characters from {@code buffer} starting at {@code
 * offset} to the target.
 * <p>
 * This writer's error flag is set to {@code true} if this writer is closed
 * or an I/O error occurs.
 *
 * @param buf
 *            the buffer to write to the target.
 * @param offset
 *            the index of the first character in {@code buffer} to write.
 * @param count
 *            the number of characters in {@code buffer} to write.
 * @throws IndexOutOfBoundsException
 *             if {@code offset < 0} or {@code count < 0}, or if {@code
 *             offset + count} is greater than the length of {@code buf}.
 */
@Override
public void write(char[] buf, int offset, int count) {
  doWrite(buf, offset, count);
}

相关文章