本文介绍了如何从文件数据中读取字节(传递头)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要传递标题部分并获取文件的仅字节内容。例如,我想从bmp文件或jpg文件中只读取RGB字节;或者我想从txt文件中只读文本内容。我如何获得内容字节。
File.ReadAllBytes(C:\\\\ .jpg)
此方法使用标题读取。我不想要标题部分。
谢谢
我尝试过:
Marsal方法。但是很难。
I want pass header section and get bytes only content of a file. For example i want read only RGB bytes from a bmp file, or jpg file; or i want read only text content from a txt file. How can i get content bytes.
File.ReadAllBytes("C:\\a.jpg")
This method reading with headers. I don't want headers section.
Thanks
What I have tried:
Marsal method. But it was difficult.
推荐答案
这篇关于如何从文件数据中读取字节(传递头)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!