免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 6016 | 回复: 18
打印 上一主题 下一主题

perl不能写入文件内容的奇怪问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-19 14:41 |只看该作者 |倒序浏览
open(ML,"+< mail_list.txt");
while(<ML>){
        chomp($_);
        my($user,$id,$mail)=split("\t",$_);
        chomp($id);
        $saved_mail{$id}=$mail;
}
......
                        print  ML "$u\t$id\t$mail\n";

程序运行到最后这一句时,死活就没有写入,我就奇了怪了。不知道问题到底是出在哪?谁有过类似遭遇?

论坛徽章:
0
2 [报告]
发表于 2010-07-19 14:43 |只看该作者
mail_list.txt
这个文件没有其他程序在访问的。

论坛徽章:
0
3 [报告]
发表于 2010-07-19 14:49 |只看该作者
气死了。死活都想不明白。

论坛徽章:
0
4 [报告]
发表于 2010-07-19 14:50 |只看该作者
达人们快现身呀。

论坛徽章:
0
5 [报告]
发表于 2010-07-19 15:10 |只看该作者
本帖最后由 toniz 于 2010-07-19 15:14 编辑

Mixing Reads and Writes

       It is possible to specify both read and write access.  All you do is add a "+" symbol
       in front of the redirection.  But as in the shell, using a less-than on a file never
       creates a new file; it only opens an existing one.  On the other hand, using a greater-
       than always clobbers (truncates to zero length) an existing file, or creates a brand-
       new one if there isn't an old one.  Adding a "+" for read-write doesn't affect whether
       it only works on existing files or always clobbers existing ones.

           open(WTMP, "+< /usr/adm/wtmp")
               || die "can't open /usr/adm/wtmp: $!";

           open(SCREEN, "+> lkscreen")
               || die "can't open lkscreen: $!";

           open(LOGFILE, "+>> /var/log/applog"
               || die "can't open /var/log/applog: $!";

       The first one won't create a new file, and the second one will always clobber an old
       one.  The third one will create a new file if necessary and not clobber an old one, and
       it will allow you to read at any point in the file, but all writes will always go to
       the end.  In short, the first case is substantially more common than the second and
       third cases, which are almost always wrong.  (If you know C, the plus in Perl's "open"
       is historically derived from the one in C's fopen(3S), which it ultimately calls.)

       In fact, when it comes to updating a file, unless you're working on a binary file as in
       the WTMP case above, you probably don't want to use this approach for updating.
       Instead, Perl's -i flag comes to the rescue.  The following command takes all the C,
       C++, or yacc source or header files and changes all their foo's to bar's, leaving the
       old version in the original filename with a ".orig" tacked on the end:

           $ perl -i.orig -pe 's/\bfoo\b/bar/g' *.[Cchy]

       This is a short cut for some renaming games that are really the best way to update
       textfiles.  See the second question in perlfaq5 for more details.

论坛徽章:
0
6 [报告]
发表于 2010-07-19 15:17 |只看该作者
我分开写也不行呀
open(FH1,"xxx.txt")用来读取数据
open(FH2,">>xxx.txt")用来与入数据

这样也不行,又是为什么?

论坛徽章:
0
7 [报告]
发表于 2010-07-19 15:24 |只看该作者
不读  直接写是否可以成功呢?

论坛徽章:
0
8 [报告]
发表于 2010-07-19 15:33 |只看该作者
直接写应该没问题吧。我测试一下。

论坛徽章:
0
9 [报告]
发表于 2010-07-19 15:35 |只看该作者
不读直接写没问题。

论坛徽章:
0
10 [报告]
发表于 2010-07-19 15:44 |只看该作者
  1. open(FH1,"t.t");
  2. while(<FH1>){
  3. print $_;
  4. }
  5. open(FH2,">>t.t");

  6. print FH2 "kkkk\n";
复制代码
用这段测测有没问题
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP