0

我在我的测试手机(Samsung-Duos)中为 platformRequest("file:///E:/​​image.jpg") 使用图像路径。似乎文件路径无效。我在 SD 卡中有图像。请任何人帮助我使它工作!

提前致谢 :)

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:07:00.367 回答