如何得到android项目assets目录中的内容?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何得到android项目assets目录中的内容?相关的知识,希望对你有一定的参考价值。

在assets目录中存放了一个mp4文件,想要使用MediaPlayer播放,但是无法获得文件路径,网上找到的file:///android_asset/fileName 的路径不行。求解答,谢了

参考技术A assets文件夹是android程序中存放相关外部文件的一个目录,Android官方提供了相应的方法去访问该文件夹中的内容,故此我们并不需要进行相关的路径判断等代码操作,直接调用相关方法打开文件并得到一个字节输入流(InputStream);
然后通过相应的字符编码方式读取字节解码为字符输入流(InputStreamReader);再通过BufferReader对字符输入流读取文本并将字符存入缓冲区以便能提供字符、数组和线段的高效读取;最后我们就能逐行对文件内容进行读取了;
public class MainActivity extends Activity

@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

try
InputStream inputStream = getResources().getAssets().open("info.txt");
InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "UTF-8");
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
String info = "";
while ((info = bufferedReader.readLine()) != null)
Log.i("fff", info);
Toast.makeText(MainActivity.this, info, 1000).show();

catch (IOException e)
e.printStackTrace();




参考技术B String path = myActivity.getApplicationContext()
.getDatabasePath("assets文件名").getAbsolutePath();
在用io流读取追问

mediaPlayer的setDataSourse()方法只能传入路径,或者uri,得到io流怎么用mediaPlayer播放啊?谢了

追答

try
AssetFileDescriptor fileDescriptor = getAssets().openFd("bg.mp3");
MediaPlayer mediaPlayer = new MediaPlayer();
mediaPlayer.setDataSource(fileDescriptor.getFileDescriptor(),
fileDescriptor.getStartOffset(),
fileDescriptor.getLength());
mediaPlayer.prepare();
mediaPlayer.start();
catch (Exception e)
// TODO: handle exception

参考技术C Context.getAssets().open(“sample.MP4”)本回答被提问者采纳 参考技术D AssetManager am = getAssetManager();
InputStream is = am.openFile(fileName);

Assets Catalog 中的图像需要包含在 XCode 项目中吗?

【中文标题】Assets Catalog 中的图像需要包含在 XCode 项目中吗?【英文标题】:Images in Assets Catalog need to be included in XCode project? 【发布时间】:2016-10-21 01:53:25 【问题描述】:

我在资产目录中有图像。 我通过将图像从 XCode 项目视图(它们包含在项目中)拖到资产目录中来添加它们。

一旦图像在目录中,我可以从项目本身中删除它们吗?

【问题讨论】:

【参考方案1】:

是的,您应该能够从 Xcode 项目视图中删除您的图像。

将它们拖入资产目录后,它们会复制到存储资产的文件夹中。因此,您将不再需要它们在项目视图中。

【讨论】:

以上是关于如何得到android项目assets目录中的内容?的主要内容,如果未能解决你的问题,请参考以下文章

android如何调用本地html文件

手机如何读取assets隐藏目录

在Xamarin Android项目中的android Assets中添加文件夹会引发Build Error

android 怎么在代码中引用assets中的资源

Android 项目中的资源获取方法

在android下生成apk时,assets文件夹下的东西被自动删除怎么回事?(cocos2d)