朋友们,我的应用程序必须在每秒内获取当前的gps位置,并将此数据作为字节数组写入文件目录中的文件。要检查该文件中的数据,我尝试打开。但我无法打开。我该如何阅读该文件。该文件是文本文件
答案 0 :(得分:0)
private static String readFileAsString(String file) throws IOException {
byte[] bytes = new byte[(int) new File(file).length()];
BufferedInputStream stream = new BufferedInputStream(new FileInputStream(file));
stream.read(bytes);
return new String(bytes);
}