Eclipse,android app [如何]打开TXT文件[CODE]?

时间:2013-10-26 12:09:12

标签: java android eclipse

我希望eclipse的一些代码能够从内部存储,根目录和系统位置打开文件。

任何人都可以帮助我吗?

感谢

1 个答案:

答案 0 :(得分:-1)

以下几行可能是你想要的。

public static String readFromFile(String filePath){
    String total="";
    File file=new File(filePath);
      try {
        String encoding="GBK";
              if(file.isFile() && file.exists()){ //判断文件是否存在
               InputStreamReader read = new InputStreamReader(
                        new FileInputStream(file),encoding);//考虑到汉子编码格式
               BufferedReader bufferedReader = new BufferedReader(read);
               String lineTxt = null;
               while((lineTxt = bufferedReader.readLine()) != null){
                   total+=lineTxt;
               }
               read.close();
      }else if(!file.exists())
      {
        file.createNewFile();
      }
      } catch (Exception e) {
       System.out.println("读取文件内容出错");
       e.printStackTrace();
      }
     return total;
     }