ucar.unidata.io.RandomAccessFile.readByte()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(190)

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

RandomAccessFile.readByte介绍

[英]Reads a signed 8-bit value from this file. This method reads a byte from the file. If the byte read is b, where 0 <= b <= 255, then the result is:

(byte)(b)

This method blocks until the byte is read, the end of the stream is detected, or an exception is thrown.
[中]从该文件中读取有符号的8位值。此方法从文件中读取一个字节。如果字节读取为b,其中0 <= b <= 255,则结果为:
(byte)(b)
此方法会一直阻塞,直到读取字节、检测到流结束或引发异常为止。

代码示例

代码示例来源:origin: edu.ucar/cdm

  1. void read() throws IOException {
  2. raf.seek(offset);
  3. version = raf.readByte();
  4. type = raf.readByte();
  5. nbits = raf.readByte();
  6. type_class = raf.readByte();
  7. }

代码示例来源:origin: edu.ucar/netcdf

  1. void read() throws IOException {
  2. raf.seek(offset);
  3. version = raf.readByte();
  4. type = raf.readByte();
  5. nbits = raf.readByte();
  6. type_class = raf.readByte();
  7. }

代码示例来源:origin: edu.ucar/netcdf

  1. Record71() throws IOException {
  2. location = raf.readByte();
  3. raf.readByte(); // skip a byte
  4. messtype = raf.readByte();
  5. index = raf.readShort();
  6. address = h5.readOffset();
  7. }
  8. }

代码示例来源:origin: edu.ucar/cdm

  1. Record71() throws IOException {
  2. location = raf.readByte();
  3. raf.readByte(); // skip a byte
  4. messtype = raf.readByte();
  5. index = raf.readShort();
  6. address = h5.readOffset();
  7. }
  8. }

代码示例来源:origin: Unidata/thredds

  1. void read() throws IOException {
  2. int version = raf.readByte();
  3. refCount = raf.readInt();
  4. if (debug1) {
  5. log.debug(" ObjectReferenceCount={}", refCount);
  6. }
  7. }

代码示例来源:origin: edu.ucar/netcdf

  1. void read() throws IOException {
  2. byte version = raf.readByte();
  3. byte nfilters = raf.readByte();
  4. if (version == 1) raf.skipBytes(6);
  5. filters = new Filter[nfilters];
  6. for (int i = 0; i < nfilters; i++)
  7. filters[i] = new Filter(version);
  8. if (debug1) debugOut.println(" MessageFilter version=" + version + this);
  9. }

代码示例来源:origin: edu.ucar/netcdf

  1. void read() throws IOException {
  2. int version = raf.readByte();
  3. refCount = raf.readInt();
  4. if (debug1) debugOut.println(" ObjectReferenceCount=" + refCount);
  5. }

代码示例来源:origin: edu.ucar/cdm

  1. void read() throws IOException {
  2. byte version = raf.readByte();
  3. byte nfilters = raf.readByte();
  4. if (version == 1) raf.skipBytes(6);
  5. filters = new Filter[nfilters];
  6. for (int i = 0; i < nfilters; i++)
  7. filters[i] = new Filter(version);
  8. if (debug1) debugOut.println(" MessageFilter version=" + version + this);
  9. }

代码示例来源:origin: Unidata/thredds

  1. void read() throws IOException {
  2. byte version = raf.readByte();
  3. byte nfilters = raf.readByte();
  4. if (version == 1) raf.skipBytes(6);
  5. filters = new Filter[nfilters];
  6. for (int i = 0; i < nfilters; i++)
  7. filters[i] = new Filter(version);
  8. if (debug1) {
  9. log.debug(" MessageFilter version=" + version + this);
  10. }
  11. }

代码示例来源:origin: edu.ucar/cdm

  1. private int readVariableSize(int size) throws IOException {
  2. long vv;
  3. if (size == 1) {
  4. return raf.readByte();
  5. } else if (size == 2) {
  6. return raf.readShort();
  7. } else if (size == 4) {
  8. return raf.readInt();
  9. }
  10. throw new IllegalArgumentException("Dont support int size == " + size);
  11. }

代码示例来源:origin: edu.ucar/netcdf

  1. private int readVariableSize(int size) throws IOException {
  2. long vv;
  3. if (size == 1) {
  4. return raf.readByte();
  5. } else if (size == 2) {
  6. return raf.readShort();
  7. } else if (size == 4) {
  8. return raf.readInt();
  9. }
  10. throw new IllegalArgumentException("Dont support int size == "+size);
  11. }

代码示例来源:origin: edu.ucar/netcdf

  1. Record9() throws IOException {
  2. raf.read(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. }
  6. }

代码示例来源:origin: edu.ucar/cdm

  1. Record70() throws IOException {
  2. location = raf.readByte();
  3. refCount = raf.readInt();
  4. raf.readFully(id);
  5. }
  6. }

代码示例来源:origin: edu.ucar/cdm

  1. Record9() throws IOException {
  2. raf.readFully(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. }
  6. }

代码示例来源:origin: edu.ucar/cdm

  1. void read() throws IOException {
  2. version = raf.readByte();
  3. raf.skipBytes(3); // skip byte
  4. secs = raf.readInt();
  5. }

代码示例来源:origin: Unidata/thredds

  1. Record70() throws IOException {
  2. location = raf.readByte();
  3. refCount = raf.readInt();
  4. raf.readFully(id);
  5. }
  6. }

代码示例来源:origin: Unidata/thredds

  1. Record9() throws IOException {
  2. raf.readFully(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. }
  6. }

代码示例来源:origin: edu.ucar/netcdf

  1. Record8() throws IOException {
  2. raf.read(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. nameHash = raf.readInt();
  6. if (debugBtree2)
  7. debugOut.println(" record8 creationOrder=" + creationOrder + " heapId=" + Misc.showBytes(heapId));
  8. }
  9. }

代码示例来源:origin: edu.ucar/cdm

  1. Record8() throws IOException {
  2. raf.readFully(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. nameHash = raf.readInt();
  6. if (debugBtree2)
  7. debugOut.println(" record8 creationOrder=" + creationOrder + " heapId=" + Misc.showBytes(heapId));
  8. }
  9. }

代码示例来源:origin: Unidata/thredds

  1. Record8() throws IOException {
  2. raf.readFully(heapId);
  3. flags = raf.readByte();
  4. creationOrder = raf.readInt();
  5. nameHash = raf.readInt();
  6. if (debugBtree2)
  7. debugOut.println(" record8 creationOrder=" + creationOrder + " heapId=" + Misc.showBytes(heapId));
  8. }
  9. }

相关文章