zoukankan      html  css  js  c++  java
  • 08_读取当前目录下得文本文件

    在Asset目录下新建 texts/aa.txt  文件


    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;

    import android.os.Bundle;
    import android.app.Activity;
    import android.content.res.AssetManager;
    import android.view.Menu;
    import android.widget.TextView;

    public class MainActivity extends Activity {
      @Override
         public void onCreate(Bundle savedInstanceState) {
             super.onCreate(savedInstanceState);
             TextView textView = new TextView(this);
             setContentView(textView);

            
             AssetManager assetManager = getAssets();
             InputStream inputStream = null;
             try {
                 inputStream = assetManager.open("texts/aa.txt");
                 String text = loadTextFile(inputStream);
                 textView.setText(text);
             } catch (IOException e) {
                 textView.setText("Couldn't load file");
             } finally {
                 if (inputStream != null)
                     try {
                         inputStream.close();
                     } catch (IOException e) {
                         textView.setText("Couldn't close file");
                     }
             }
         }

         public String loadTextFile(InputStream inputStream) throws IOException {
             ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
             byte[] bytes = new byte[4096];
             int len = 0;
             while ((len = inputStream.read(bytes)) > 0)
                 byteStream.write(bytes, 0, len);
             return new String(byteStream.toByteArray(), "UTF8");
         }
     }

  • 相关阅读:
    云原生学习笔记(4)——Pod和容器设计模式
    云原生学习笔记(3)——Kubernetes基本概念
    云原生学习笔记(2)——容器基本概念
    云原生学习笔记(1)——云原生
    JAVA基础系列:JDK目录结构
    Mac 接手步骤
    JAVA基础系列:运行环境
    软件测试系列——Web界面检查点和测试原则
    软件测试系列——白盒测试
    软件测试系列——性能指标
  • 原文地址:https://www.cnblogs.com/xl711436/p/3060438.html
Copyright © 2011-2022 走看看