65

我需要知道资产文件夹中文件的字符串路径,因为我使用的地图 API 需要接收字符串路径,并且我的地图必须存储在资产文件夹中

这是我正在尝试的代码:

    MapView mapView = new MapView(this);
    mapView.setClickable(true);
    mapView.setBuiltInZoomControls(true);
    mapView.setMapFile("file:///android_asset/m1.map");
    setContentView(mapView);

出现问题,"file:///android_asset/m1.map"因为地图未加载。

哪个是存储在我的资产文件夹中的文件m1.map的正确字符串路径文件?

谢谢

为 Dimitru 编辑:此代码不起作用,它因is.read(buffer);IOException而失败

        try {
            InputStream is = getAssets().open("m1.map");
            int size = is.available();
            byte[] buffer = new byte[size];
            is.read(buffer);
            is.close();
            text = new String(buffer);
        } catch (IOException e) {throw new RuntimeException(e);}
4

4 回答 4

100

AFAIK 资产目录中的文件不会被解压。相反,它们是直接从 APK (ZIP) 文件中读取的。

所以,你真的不能让期望文件的东西接受资产“文件”。

相反,您必须提取资产并将其写入单独的文件,就像 Dumitru 建议的那样:

  File f = new File(getCacheDir()+"/m1.map");
  if (!f.exists()) try {

    InputStream is = getAssets().open("m1.map");
    int size = is.available();
    byte[] buffer = new byte[size];
    is.read(buffer);
    is.close();


    FileOutputStream fos = new FileOutputStream(f);
    fos.write(buffer);
    fos.close();
  } catch (Exception e) { throw new RuntimeException(e); }

  mapView.setMapFile(f.getPath());
于 2011-12-12T13:33:03.413 回答
16

您可以使用此方法。

    public static File getRobotCacheFile(Context context) throws IOException {
        File cacheFile = new File(context.getCacheDir(), "robot.png");
        try {
            InputStream inputStream = context.getAssets().open("robot.png");
            try {
                FileOutputStream outputStream = new FileOutputStream(cacheFile);
                try {
                    byte[] buf = new byte[1024];
                    int len;
                    while ((len = inputStream.read(buf)) > 0) {
                        outputStream.write(buf, 0, len);
                    }
                } finally {
                    outputStream.close();
                }
            } finally {
                inputStream.close();
            }
        } catch (IOException e) {
            throw new IOException("Could not open robot png", e);
        }
        return cacheFile;
    }

在这种情况下,您永远不应该使用 InputStream.available() 。它仅返回缓冲的字节。带有 .available() 的方法永远不会适用于更大的文件,并且根本不适用于某些设备。

在 Kotlin (;D) 中:

@Throws(IOException::class)
fun getRobotCacheFile(context: Context): File = File(context.cacheDir, "robot.png")
    .also {
        it.outputStream().use { cache -> context.assets.open("robot.png").use { it.copyTo(cache) } }
    }
于 2013-11-04T10:38:58.150 回答
10

查看 SDK 附带的 API 示例中的 ReadAsset.java。

       try {
        InputStream is = getAssets().open("read_asset.txt");

        // We guarantee that the available method returns the total
        // size of the asset...  of course, this does mean that a single
        // asset can't be more than 2 gigs.
        int size = is.available();

        // Read the entire asset into a local byte buffer.
        byte[] buffer = new byte[size];
        is.read(buffer);
        is.close();

        // Convert the buffer into a string.
        String text = new String(buffer);

        // Finally stick the string into the text view.
        TextView tv = (TextView)findViewById(R.id.text);
        tv.setText(text);
    } catch (IOException e) {
        // Should never happen!
        throw new RuntimeException(e);
    }
于 2011-12-12T13:18:14.067 回答
4

只是为了添加 Jacek 的完美解决方案。如果您尝试在 Kotlin 中执行此操作,它不会立即起作用。相反,你会想要使用这个:

@Throws(IOException::class)
fun getSplashVideo(context: Context): File {
    val cacheFile = File(context.cacheDir, "splash_video")
    try {
        val inputStream = context.assets.open("splash_video")
        val outputStream = FileOutputStream(cacheFile)
        try {
            inputStream.copyTo(outputStream)
        } finally {
            inputStream.close()
            outputStream.close()
        }
    } catch (e: IOException) {
        throw IOException("Could not open splash_video", e)
    }
    return cacheFile
}
于 2017-06-29T15:55:10.097 回答