解决flvplayback组件不支持中文路径的办法
点击次数:37 次 发布日期:2008-11-21 23:37:33 作者:源代码网
|
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; |
