0

在我的应用程序中,我正在尝试使用 platformRequest(URL) 从 SD 卡播放视频。这是我用来做的代码 - platformRequest("file:///E:/​​bega.3gp") 。我不知道这是正确的方法。路径格式是否正确?请建议我从我的应用程序中播放视频播放器中的视频的方法。

4

1 回答 1

1

只要确保您通过正确的路径。使用下面的代码,您将能够知道您拥有哪些可用的路径。

 private String getFullMusicPath() {
    Enumeration drives = FileSystemRegistry.listRoots();
    String root = null;
    while (drives.hasMoreElements()) {
        root = (String) drives.nextElement();
        if (root.equalsIgnoreCase("sdcard/")) {
            return "file:///" + root + musicFolder + "/";
        }
    }
    return (root == null ? null : "file:///" + root + musicFolder + "/");
}
于 2014-03-14T13:10:40.717 回答