zoukankan      html  css  js  c++  java
  • Android中读取文本文件中内容的方法

        这几天在项目开发中,要读取文本文件中内容的,因此写了个读取文本文件中内容的方法,代码如下:

    //读取文本文件中的内容
        public static String ReadTxtFile(String strFilePath)
        {
            String path = strFilePath;
            String content = ""; //文件内容字符串
                //打开文件
                File file = new File(path);
                //如果path是传递过来的参数,可以做一个非目录的判断
                if (file.isDirectory())
                {
                    Log.d("TestFile", "The File doesn't not exist.");
                }
                else
                {
                    try {
                        InputStream instream = new FileInputStream(file);
                        if (instream != null)
                        {
                            InputStreamReader inputreader = new InputStreamReader(instream);
                            BufferedReader buffreader = new BufferedReader(inputreader);
                            String line;
                            //分行读取
                            while (( line = buffreader.readLine()) != null) {
                                content += line + "\n";
                            }                
                            instream.close();
                        }
                    }
                    catch (java.io.FileNotFoundException e)
                    {
                        Log.d("TestFile", "The File doesn't not exist.");
                    }
                    catch (IOException e)
                    {
                         Log.d("TestFile", e.getMessage());
                    }
                }
                return content;
        }


  • 相关阅读:
    xamp配置多域名站点
    POJ1611-The Suspects-ACM
    POJ2524-宗教问题-并查集-ACM
    POJ3274-牛的属性-HASH-ACM
    拓扑排序-DFS
    拓扑排序
    POJ1007-DNA Sorting-ACM
    POJ1258-Agri-Net-ACM
    wdcp-apache配置错误导致进程淤积进而内存吃紧
    wdcp-apache开启KeepAlive提高响应速度
  • 原文地址:https://www.cnblogs.com/kevinGao/p/2426891.html
Copyright © 2011-2022 走看看