作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从文件中读取记录,每条记录有 9 个字节长。我需要知道如何从文件中的不同点开始阅读
最佳答案
您似乎正在寻找 seek
函数:
help?> seek
search: seek seekend seekstart ParseError setenv select select! selectperm
seek(s, pos)
Seek a stream to the given position.
您可能特别想要
open(filename) do f
seek(f, n) # seek past nth byte
read(f, m) # read m bytes
end
还有一个可能有用的skip
函数
help?> skip
search: skip skipchars
skip(s, offset)
Seek a stream relative to the current position.
关于julia - 如何在 Julia 中从头开始读取 x 字节的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42265406/
我需要用这样的数据构建一个表: ┌────────┬───────────┬────────┐ │ ID │ Name │ Age │ ├────
我是一名优秀的程序员,十分优秀!