求教perl locale产生warning的问题

求教perl locale产生warning的问题

今天发了一个相关帖子,不过没说清楚。
我的环境是Windows 2000 Server(中文), ActivePerl5.8.8
运行程序的时候产生如下warning:

QUOTE:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LC_ALL = (unset),
LANG = (unset)
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

我看了perldoc perllocale,不过看得有点糊涂,大侠能否再指点一下,用哪种方法解决比较好?
谢!
其实没啥问题吧,linux上常会有这样的问题
你试试:

$ENV{'LC_ALL'}='zh_CN.GB2312';  
$ENV{'LANG'}=''zh_CN.GB2312';

这两个值多试一些,比如zh_CN.UTF-8, C ...