我是用下面的方法,把得到的xml串存为文件的的,但老是报
Wide character in print at SubProcess.pl line 115.的告警信息,
请问是什么原因?如何解决?
open ALOG, ">$file" or die $!;
print ALOG qq{$dat};
close ALOG;
...全文
23074打赏收藏
perl print 的时候报 Wide character in print告警的问题
我是用下面的方法,把得到的xml串存为文件的的,但老是报 Wide character in print at SubProcess.pl line 115.的告警信息, 请问是什么原因?如何解决? open ALOG, ">$file" or die $!; print ALOG qq{$dat}; close ALOG;