path = "C:\\Documents and Settings\\hbbalfred\\桌面\\1\\Video\\streamvideo1.flv";
path = escape (path);
System.useCodepage = true;
path = unescape (path);
System.useCodepage = false;
flvPlayer_cmp.contentPath = path;
通过转换,使有中文的路径成为合法,具体原理,看这里 path = escape (path);
System.useCodepage = true;
path = unescape (path);
System.useCodepage = false;
flvPlayer_cmp.contentPath = path;
