-3

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

谁能帮我?

谢谢

4

1 回答 1

-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;
     }
于 2013-10-26T12:18:28.910 回答