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

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

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

ObjectInputStream.nextTC介绍

[英]Return the next token code (TC) from the receiver, which indicates what kind of object follows
[中]

代码示例

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

byte tc = nextTC();
switch (tc) {
  case TC_REFERENCE:

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

private ObjectStreamClass readEnumDescInternal() throws IOException, ClassNotFoundException {
  ObjectStreamClass classDesc;
  primitiveData = input;
  int oldHandle = descriptorHandle;
  descriptorHandle = nextHandle();
  classDesc = readClassDescriptor();
  registerObjectRead(classDesc, descriptorHandle, false);
  descriptorHandle = oldHandle;
  primitiveData = emptyStream;
  classDesc.setClass(resolveClass(classDesc));
  // Consume unread class annotation data and TC_ENDBLOCKDATA
  discardData();
  ObjectStreamClass superClass = readClassDesc();
  checkedSetSuperClassDesc(classDesc, superClass);
  // Check SUIDs, note all SUID for Enum is 0L
  if (0L != classDesc.getSerialVersionUID() || 0L != superClass.getSerialVersionUID()) {
    throw new InvalidClassException(superClass.getName(),
        "Incompatible class (SUID): " + superClass + " but expected " + superClass);
  }
  byte tc = nextTC();
  // discard TC_ENDBLOCKDATA after classDesc if any
  if (tc == TC_ENDBLOCKDATA) {
    // read next parent class. For enum, it may be null
    superClass.setSuperclass(readClassDesc());
  } else {
    // not TC_ENDBLOCKDATA, push back for next read
    pushbackTC();
  }
  return classDesc;
}

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

byte tc = nextTC();
switch (tc) {
  case TC_CLASS:

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

byte tc = nextTC();
switch (tc) {
  case TC_CLASSDESC:

代码示例来源: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.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: 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.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: 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);
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
  ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

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

private ObjectStreamClass readEnumDesc() throws IOException,
    ClassNotFoundException {
  byte tc = nextTC();
  switch (tc) {
    case TC_CLASSDESC:
      return readEnumDescInternal();
    case TC_REFERENCE:
      return (ObjectStreamClass) readCyclicReference();
    case TC_NULL:
      return null;
    default:
      throw corruptStream(tc);
  }
}

相关文章

ObjectInputStream类方法