java-cef基本编译完可以运行了,就差flash player部分。。下面是没有调用flash情况下访问web.kugou.com显示没有flash插件
下面代码调用系统的flash player 编译过jcef的应该知道吧 @Override
public void onBeforeCommandLineProcessing(String process_type, CefCommandLine command_line) {
super.onBeforeCommandLineProcessing(process_type, command_line);
command_line.appendSwitch("--enable-system-flash");
}
当调用系统安装的flash player后
前一张的Flash后面可以看到flash player版本,但是加载网页后,程序就死掉了
比如 打开web.kugou.com能正常看到flash player调用的画面,但程序马上就停了无论打开那个网页都会这样有没有这方面经验的前辈指点下,谢谢