10

我有一个 jar 文件,我需要为其传递文件对象。如何将资源或资产作为文件对象传递给该方法?

如何将项目文件夹中的资产或原始文件转换为文件对象?

4

3 回答 3

5

这是我所做的:

将您的资产文件复制到 SDCard:

AssetManager assetManager = context.getResources().getAssets();

String[] files = null;

try {
    files = assetManager.list("ringtone"); //ringtone is folder name
} catch (Exception e) {
    Log.e(LOG_TAG, "ERROR: " + e.toString());
}

for (int i = 0; i < files.length; i++) {
    InputStream in = null;
    OutputStream out = null;
    try {
        in = assetManager.open("ringtone/" + files[i]);
        out = new FileOutputStream(basepath + "/ringtone/" + files[i]);

        byte[] buffer = new byte[65536 * 2];
        int read;
        while ((read = in.read(buffer)) != -1) {
            out.write(buffer, 0, read);
        }
        in.close();
        in = null;
        out.flush();
        out.close();
        out = null;
        Log.d(LOG_TAG, "Ringtone File Copied in SD Card");
    } catch (Exception e) {
        Log.e(LOG_TAG, "ERROR: " + e.toString());
    }
}

然后通过路径读取你的文件:

File ringFile = new File(Environment.getExternalStorageDirectory().toString() + "/ringtone", "fileName.mp3");

你去吧。您拥有资产文件的文件对象的副本。希望这可以帮助。

于 2012-06-07T11:33:28.170 回答
4

将原始文件读入文件。

    InputStream ins = getResources().openRawResource(R.raw.my_db_file);
    ByteArrayOutputStream outputStream=new ByteArrayOutputStream();
    int size = 0;
    // Read the entire resource into a local byte buffer.
    byte[] buffer = new byte[1024];
    while((size=ins.read(buffer,0,1024))>=0){
      outputStream.write(buffer,0,size);
    }
    ins.close();
    buffer=outputStream.toByteArray();

    FileOutputStream fos = new FileOutputStream("mycopy.db");
    fos.write(buffer);
    fos.close();

为避免 OutOfMemory 应用以下逻辑。

不要一次创建一个包含所有数据的巨大 ByteBuffer。创建一个小得多的 ByteBuffer,用数据填充它,然后将这些数据写入 FileChannel。然后重置 ByteBuffer 并继续,直到所有数据都被写入。

于 2012-06-07T11:32:03.060 回答
0

我不知道有什么方法可以得到一个实际的File对象,但如果你可以使用 a FileDescriptor,你可以这样做:

FileDescriptor fd = getAssets().openFd(assetFileName).getFileDescriptor();
于 2012-06-07T11:29:25.230 回答