免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: hairboy168
打印 上一主题 下一主题

perl 读取文件报“OUT OF MEMORY",急!!! [复制链接]

论坛徽章:
0
11 [报告]
发表于 2009-09-28 10:13 |只看该作者
谢谢大家的真诚的回复,这个问题我们已经找到原因了:
1、out of memory是因为Aix的系统设置问题,重新unlimit一下文件系统的大小即可

2、另一个关于循环的问题,最后我们也查到这个100MB的文件,只有一行数据,无论采用什么方式读文件都是读取整个文件,导致我们程序无法处理,已经与AS400主机人员协调解决。

再次谢谢大家!!

论坛徽章:
5
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015年亚洲杯之朝鲜
日期:2015-03-13 22:47:33IT运维版块每日发帖之星
日期:2016-01-09 06:20:00IT运维版块每周发帖之星
日期:2016-03-07 16:27:44
12 [报告]
发表于 2009-09-28 11:54 |只看该作者

回复 #11 hairboy168 的帖子

mark

论坛徽章:
0
13 [报告]
发表于 2009-09-28 13:03 |只看该作者
原帖由 hairboy168 于 2009-9-28 10:13 发表
谢谢大家的真诚的回复,这个问题我们已经找到原因了:
1、out of memory是因为Aix的系统设置问题,重新unlimit一下文件系统的大小即可

2、另一个关于循环的问题,最后我们也查到这个100MB的文件,只有一行数 ...


只有一行数据的,可以用:
read FILEHANDLE,SCALAR,LENGTH,OFFSET
这个函数读,每次只读指定大小。

论坛徽章:
0
14 [报告]
发表于 2009-09-28 14:03 |只看该作者
一开始就告诉lz了,数据应该是非文本的,一次读入所有的导致的,也告诉lz了,用 read / sysread 可以解决,但是 lz 完全不知道自己解决问题,反而去责怪厂商、系统的问题,哎,不过这年头,确实,客户至上,不论谁错,都是乙方的错!

论坛徽章:
0
15 [报告]
发表于 2009-09-28 21:04 |只看该作者
呵呵,多谢,再请教一下楼上的read函数是否一块一块自动往下读??读取一个整文件,是否需要一个循环去控制(aix环境)??

[ 本帖最后由 hairboy168 于 2009-9-28 21:17 编辑 ]

论坛徽章:
0
16 [报告]
发表于 2009-09-28 22:10 |只看该作者
Typical case of using read,
     while( 1 ) {
          $bytes = read( $hFile, $buffer, 50, length( $buffer ));
          last unless $bytes > 0;
     }

read FILEHANDLE,SCALAR,LENGTH,OFFSET
read FILEHANDLE,SCALAR,LENGTH
        Attempts to read LENGTH *characters* of data into variable
        SCALAR from the specified FILEHANDLE. Returns the number of
        characters actually read, 0 at end of file, or undef if there
        was an error (in the latter case $! is also set). SCALAR will be
        grown or shrunk so that the last character actually read is the
        last character of the scalar after the read.

        An OFFSET may be specified to place the read data at some place
        in the string other than the beginning. A negative OFFSET
        specifies placement at that many characters counting backwards
        from the end of the string. A positive OFFSET greater than the
        length of SCALAR results in the string being padded to the
        required size with "\0" bytes before the result of the read is
        appended.

        The call is actually implemented in terms of either Perl's or
        system's fread() call. To get a true read(2) system call, see
        "sysread".

        Note the *characters*: depending on the status of the
        filehandle, either (8-bit) bytes or characters are read. By
        default all filehandles operate on bytes, but for example if the
        filehandle has been opened with the ":utf8" I/O layer (see
        "open", and the "open" pragma, open), the I/O will operate on
        UTF-8 encoded Unicode characters, not bytes. Similarly for the
        ":encoding" pragma: in that case pretty much any characters can
        be read.

[ 本帖最后由 dugu072 于 2009-9-28 22:13 编辑 ]

论坛徽章:
0
17 [报告]
发表于 2009-09-29 09:15 |只看该作者
楼上高手,能否加入Msn聊,msn acc:hairboy168@hotmail.com,急切期盼中,谢谢!!

论坛徽章:
0
18 [报告]
发表于 2009-09-29 11:07 |只看该作者
各位高手,这个数据文件如果采用read的方式来读的话,因为spool file包含中英文(单双字节),所以这种读取方法将导致诸多地方的中文乱码(中文双字节时read只读了其中一个字节),请问有什么解决方案吗?谢谢!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP