转自:http://blog.sina.com.cn/s/blog_6cf0d3f30100m2x6.html

Android 系统为每个新设计的程序提供了/assets目录,这个目录保存的文件可以打包在程序里。/res 和/assets的不同点是,android不为/assets下的文件生成ID。如果使用/assets下的文件,需要指定文件的路径和文件名。下面这个例子,显示如何访问/assets下的内容。


在文件中/assets 中建立/image子目录,将/res/drawable下的icon.png子目录拷贝到该目录中。在/assets子目录中建立readme.txt文件,文件中输入文本“hello,world!!!”。

main.xml:

<?xml version="1.0" encoding="utf-8" ?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    ><TextView     android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="@string/hello"    />    <EditText android:id="@+id/firstId"     android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="@string/hello"    />    <EditText android:id="@+id/secondId"     android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="@string/hello"    /> </LinearLayout>

程序文件:

public class GetAssets extends Activity { private EditText firstField; private EditText secondField; @Override public void onCreate(Bundle savedInstanceState) {  super .onCreate(savedInstanceState);//  Log.d("show main.xml","ok ");  setContentView(R.layout.main );  Log.d ("show main.xml","ok");  AssetManager assetManager = getAssets();  String[] files = null ;  try {   files = assetManager.list("image");  } catch (IOException e) {   Log.e ("tag", e.getMessage());  }  firstField = (EditText) findViewById(R.id.firstId );  firstField.setText(Integer.toString (files.length)+"file.File name is"+ files[0]);  InputStream inputStream = null ;  try {   inputStream = assetManager.open("readme.txt");  } catch (IOException e) {   Log.e ("tag", e.getMessage());  }  String s = readTextFile(inputStream);  secondField = (EditText) findViewById(R.id.secondId );  secondField.setText(s); }  private String readTextFile(InputStream inputStream) {  ByteArrayOutputStream outputStream = new ByteArrayOutputStream();  byte buf[] = new byte [1024];  int len;  try {   while ((len = inputStream.read(buf)) != -1) {    outputStream.write(buf, 0, len);   }   outputStream.close();   inputStream.close();  } catch (IOException e) {  }  return outputStream.toString(); }}



更多相关文章

  1. Android学习笔记(六)-文件操作与SDCard读写访问
  2. Android实现在xml文件中引用自定义View的方法分析
  3. AndroidStudioSDK下tools下各个文件(夹)的用处
  4. Android利用程序实现GPS的打开或关闭
  5. Android App程序运行过程 ActivityThread.main()------>详解系列
  6. android 存储数据与文件
  7. Android 应用程序获得版本号
  8. Android studio设置activity主题程序崩溃解决办法

随机推荐

  1. 老调重弹篇:有关BC/C++语言程序编程学习的
  2. Linux软件包管理
  3. K8S中部署KAFKA集群
  4. 如何写出让大厂面试官满意的字符串复制函
  5. 华为防火墙L2TP ***的配置
  6. 顺序栈(C语言,静态栈)
  7. Oracle Linux 7.9+Oracle 12c+ASM安装文
  8. 总结了几个Java锁的面试题,看你是否能融会
  9. 再议电商业务的复杂性
  10. markdown与Emmet插件的使用方式