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

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

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

RandomAccessFile.read_介绍

[英]Read directly from file, without going through the buffer. All reading goes through here or readToByteChannel;
[中]直接从文件中读取,无需经过缓冲区。所有阅读都通过这里或ReadToByte频道;

代码示例

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

  1. /**
  2. * Read an integer at the given position, bypassing all buffering.
  3. *
  4. * @param pos read a byte at this position
  5. * @return The int that was read
  6. * @throws IOException if an I/O error occurs.
  7. */
  8. public final int readIntUnbuffered(long pos) throws IOException {
  9. byte[] bb = new byte[4];
  10. read_(pos, bb, 0, 4);
  11. int ch1 = bb[0] & 0xff;
  12. int ch2 = bb[1] & 0xff;
  13. int ch3 = bb[2] & 0xff;
  14. int ch4 = bb[3] & 0xff;
  15. if ((ch1 | ch2 | ch3 | ch4) < 0) {
  16. throw new EOFException();
  17. }
  18. if (bigEndian) {
  19. return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4));
  20. } else {
  21. return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1));
  22. }
  23. }

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

  1. /**
  2. * Read an integer at the given position, bypassing all buffering.
  3. *
  4. * @param pos read a byte at this position
  5. * @return The int that was read
  6. * @throws IOException if an I/O error occurs.
  7. */
  8. public final int readIntUnbuffered(long pos) throws IOException {
  9. byte[] bb = new byte[4];
  10. read_(pos, bb, 0, 4);
  11. int ch1 = bb[0] & 0xff;
  12. int ch2 = bb[1] & 0xff;
  13. int ch3 = bb[2] & 0xff;
  14. int ch4 = bb[3] & 0xff;
  15. if ((ch1 | ch2 | ch3 | ch4) < 0) {
  16. throw new EOFException();
  17. }
  18. if (bigEndian) {
  19. return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4));
  20. } else {
  21. return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1));
  22. }
  23. }

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

  1. /**
  2. * Read an integer at the given position, bypassing all buffering.
  3. *
  4. * @param pos read a byte at this position
  5. * @return The int that was read
  6. * @throws IOException if an I/O error occurs.
  7. */
  8. public final int readIntUnbuffered(long pos) throws IOException {
  9. byte[] bb = new byte[4];
  10. read_(pos, bb, 0, 4);
  11. int ch1 = bb[0] & 0xff;
  12. int ch2 = bb[1] & 0xff;
  13. int ch3 = bb[2] & 0xff;
  14. int ch4 = bb[3] & 0xff;
  15. if ((ch1 | ch2 | ch3 | ch4) < 0) {
  16. throw new EOFException();
  17. }
  18. if (bigEndian) {
  19. return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4));
  20. } else {
  21. return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1));
  22. }
  23. }

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

  1. /**
  2. * Read an integer at the given position, bypassing all buffering.
  3. *
  4. * @param pos read a byte at this position
  5. * @return The int that was read
  6. * @throws IOException if an I/O error occurs.
  7. */
  8. public final int readIntUnbuffered(long pos) throws IOException {
  9. byte[] bb = new byte[4];
  10. read_(pos, bb, 0, 4);
  11. int ch1 = bb[0] & 0xff;
  12. int ch2 = bb[1] & 0xff;
  13. int ch3 = bb[2] & 0xff;
  14. int ch4 = bb[3] & 0xff;
  15. if ((ch1 | ch2 | ch3 | ch4) < 0) {
  16. throw new EOFException();
  17. }
  18. if (bigEndian) {
  19. return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4));
  20. } else {
  21. return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1));
  22. }
  23. }

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

  1. protected void readBuffer(long pos) throws IOException {
  2. // If the current buffer is modified, write it to disk.
  3. if (bufferModified) {
  4. flush();
  5. }
  6. bufferStart = pos;
  7. filePosition = pos;
  8. dataSize = read_(pos, buffer, 0, buffer.length);
  9. if (dataSize <= 0) {
  10. dataSize = 0;
  11. endOfFile = true;
  12. } else {
  13. endOfFile = false;
  14. }
  15. // Cache the position of the buffer end.
  16. dataEnd = bufferStart + dataSize;
  17. }

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

  1. protected void readBuffer(long pos) throws IOException {
  2. // If the current buffer is modified, write it to disk.
  3. if (bufferModified) {
  4. flush();
  5. }
  6. bufferStart = pos;
  7. filePosition = pos;
  8. dataSize = read_(pos, buffer, 0, buffer.length);
  9. if (dataSize <= 0) {
  10. dataSize = 0;
  11. endOfFile = true;
  12. } else {
  13. endOfFile = false;
  14. }
  15. // Cache the position of the buffer end.
  16. dataEnd = bufferStart + dataSize;
  17. }

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

  1. protected void readBuffer(long pos) throws IOException {
  2. // If the current buffer is modified, write it to disk.
  3. if (bufferModified) {
  4. flush();
  5. }
  6. bufferStart = pos;
  7. filePosition = pos;
  8. dataSize = read_(pos, buffer, 0, buffer.length);
  9. if (dataSize <= 0) {
  10. dataSize = 0;
  11. endOfFile = true;
  12. } else {
  13. endOfFile = false;
  14. }
  15. // Cache the position of the buffer end.
  16. dataEnd = bufferStart + dataSize;
  17. }

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

  1. protected void readBuffer(long pos) throws IOException {
  2. // If the current buffer is modified, write it to disk.
  3. if (bufferModified) {
  4. flush();
  5. }
  6. bufferStart = pos;
  7. filePosition = pos;
  8. dataSize = read_(pos, buffer, 0, buffer.length);
  9. if (dataSize <= 0) {
  10. dataSize = 0;
  11. endOfFile = true;
  12. } else {
  13. endOfFile = false;
  14. }
  15. // Cache the position of the buffer end.
  16. dataEnd = bufferStart + dataSize;
  17. }

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

  1. extraCopy = read_(filePosition, b, off + copyLength, len - copyLength);

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

  1. extraCopy = read_(filePosition, b, off + copyLength, len - copyLength);

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

  1. extraCopy = read_(filePosition, b, off + copyLength, len - copyLength);

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

  1. extraCopy = read_(filePosition, b, off + copyLength, len - copyLength);

相关文章