java.io.ObjectInputStream.readContent()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(95)

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

ObjectInputStream.readContent介绍

[英]Reads the content of the receiver based on the previously read token tc.
[中]基于先前读取的令牌tc读取接收器的内容。

代码示例

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException            If an IO exception happened when reading the optional class
 *                                annotation.
 * @throws ClassNotFoundException If the class corresponding to the class descriptor could not
 *                                be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

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

/**
 * Reads and discards block data and objects until TC_ENDBLOCKDATA is found.
 *
 * @throws IOException
 *             If an IO exception happened when reading the optional class
 *             annotation.
 * @throws ClassNotFoundException
 *             If the class corresponding to the class descriptor could not
 *             be found.
 */
private void discardData() throws ClassNotFoundException, IOException {
  primitiveData = emptyStream;
  boolean resolve = mustResolve;
  mustResolve = false;
  do {
    byte tc = nextTC();
    if (tc == TC_ENDBLOCKDATA) {
      mustResolve = resolve;
      return; // End of annotation
    }
    readContent(tc);
  } while (true);
}

相关文章

ObjectInputStream类方法