如何在 Perl 中打开二进制文件,仅更改第一个字节,然后将其写回?

发布于 2024-08-25 16:38:10 字数 180 浏览 4 评论 0原文

在 C 语言中更改文件中的一个字节非常相似,但在 Perl 而不是 C 中。

如何在 Perl 中打开二进制文件,仅更改第一个字节,然后将其写回?

Very similar to Changing one byte in a file in C, but in Perl instead of C.

How can I open a binary file in Perl, change ONLY the first byte, and write it back out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丑丑阿 2024-09-01 16:38:10
open my $fh, '+<', $file      or die "open failed: $!\n";
my $byte;
sysread($fh, $byte, 1) == 1   or die "read failed: $!\n";
seek($fh, 0, 0);
syswrite($fh, $new_byte) == 1 or die "write failed: $!\n";
close $fh                     or die "close failed: $!\n"; 
open my $fh, '+<', $file      or die "open failed: $!\n";
my $byte;
sysread($fh, $byte, 1) == 1   or die "read failed: $!\n";
seek($fh, 0, 0);
syswrite($fh, $new_byte) == 1 or die "write failed: $!\n";
close $fh                     or die "close failed: $!\n"; 
病毒体 2024-09-01 16:38:10

有很多方法可以做到这一点。一种有效的方法是使用 open $fh, '+<' 以随机访问模式打开文件:

my $first_byte = chr(14);      # or whatever you want the first byte to be
open my $fh, '+<', $the_file;
seek $fh, 0, 0;                # optional - cursor is originally set to 0
print $fh $first_byte;         # could also use  write  or  syswrite  functions
close $fh;

Many ways to do it. An efficient way is to open the file in random access mode with open $fh, '+<':

my $first_byte = chr(14);      # or whatever you want the first byte to be
open my $fh, '+<', $the_file;
seek $fh, 0, 0;                # optional - cursor is originally set to 0
print $fh $first_byte;         # could also use  write  or  syswrite  functions
close $fh;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文