GWT添加媒体显示

http://code.google.com/p/bst-player/downloads/list

下载bst-player-api-2.0.3.jar

下载core-player-provider-2.0.jar



   SimplePanel panel = new SimplePanel();
        AbstractMediaPlayer player = null;
        try {
            player = new WinMediaPlayer(
                    "C:/Documents and Settings/dell/Application Data/Tencent/QQMusic/Cache/WhirlCache/爱很简单.wma");
            panel.setWidget(player);
        } catch (PluginVersionException e) {
            panel.setWidget(new HTML(
                    ".. some nice message telling the user to download plugin first .."));
        } catch (PluginNotFoundException e) {
            panel.setWidget(new HTML(
                    ".. another nice message telling the user to download plugin.."));
        }

你可能感兴趣的:(GWT添加媒体显示)