android读取data/data/包名/file路径下的txt文件

文件不能太大否则会报内存溢出
[java] view plain copy
  1. packageyu.bin;
  2. importjava.io.FileInputStream;
  3. importorg.apache.http.util.EncodingUtils;
  4. importandroid.app.Activity;
  5. importandroid.os.Bundle;
  6. importandroid.widget.TextView;
  7. publicclassReaddataPathActivityextendsActivity{
  8. TextViewtextView;
  9. //这个是读取data/data/包名/file路径下的文件
  10. //这个目录可以用getFilesDir()方法得到
  11. /**Calledwhentheactivityisfirstcreated.*/
  12. @Override
  13. publicvoidonCreate(BundlesavedInstanceState){
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.main);
  16. textView=(TextView)findViewById(R.id.tvtext);
  17. Stringtxt="";
  18. try{
  19. //获取文件
  20. FileInputStreamfin=openFileInput("name.txt");
  21. //获得长度
  22. intlength=fin.available();
  23. //创建字节数组
  24. byte[]buffer=newbyte[length];
  25. //读取内容
  26. fin.read(buffer);
  27. //获得编码格式
  28. Stringtype=codetype(buffer);
  29. //按编码格式获得内容
  30. txt=EncodingUtils.getString(buffer,type);
  31. textView.setText(txt);
  32. }
  33. catch(Exceptione){
  34. //TODO:handleexception
  35. }
  36. }
  37. privateStringcodetype(byte[]head){
  38. Stringtype="";
  39. byte[]codehead=newbyte[3];
  40. System.arraycopy(head,0,codehead,0,3);
  41. if(codehead[0]==-1&&codehead[1]==-2){
  42. type="UTF-16";
  43. }
  44. elseif(codehead[0]==-2&&codehead[1]==-1){
  45. type="UNICODE";
  46. }
  47. elseif(codehead[0]==-17&&codehead[1]==-69&&codehead[2]==-65){
  48. type="UTF-8";
  49. }
  50. else{
  51. type="GB2312";
  52. }
  53. returntype;
  54. }
  55. }



文件不能太大否则会报内存溢出
[java] view plain copy
  1. packageyu.bin;
  2. importjava.io.FileInputStream;
  3. importorg.apache.http.util.EncodingUtils;
  4. importandroid.app.Activity;
  5. importandroid.os.Bundle;
  6. importandroid.widget.TextView;
  7. publicclassReaddataPathActivityextendsActivity{
  8. TextViewtextView;
  9. //这个是读取data/data/包名/file路径下的文件
  10. //这个目录可以用getFilesDir()方法得到
  11. /**Calledwhentheactivityisfirstcreated.*/
  12. @Override
  13. publicvoidonCreate(BundlesavedInstanceState){
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.main);
  16. textView=(TextView)findViewById(R.id.tvtext);
  17. Stringtxt="";
  18. try{
  19. //获取文件
  20. FileInputStreamfin=openFileInput("name.txt");
  21. //获得长度
  22. intlength=fin.available();
  23. //创建字节数组
  24. byte[]buffer=newbyte[length];
  25. //读取内容
  26. fin.read(buffer);
  27. //获得编码格式
  28. Stringtype=codetype(buffer);
  29. //按编码格式获得内容
  30. txt=EncodingUtils.getString(buffer,type);
  31. textView.setText(txt);
  32. }
  33. catch(Exceptione){
  34. //TODO:handleexception
  35. }
  36. }
  37. privateStringcodetype(byte[]head){
  38. Stringtype="";
  39. byte[]codehead=newbyte[3];
  40. System.arraycopy(head,0,codehead,0,3);
  41. if(codehead[0]==-1&&codehead[1]==-2){
  42. type="UTF-16";
  43. }
  44. elseif(codehead[0]==-2&&codehead[1]==-1){
  45. type="UNICODE";
  46. }
  47. elseif(codehead[0]==-17&&codehead[1]==-69&&codehead[2]==-65){
  48. type="UTF-8";
  49. }
  50. else{
  51. type="GB2312";
  52. }
  53. returntype;
  54. }
  55. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值