目前共有1篇帖子。
[函数]Android读取txt文件数据并保存到String变量中
1樓 巨大八爪鱼 2015-5-1 12:29
public static String readTextFile(String fileName) {
        try {
            FileInputStream in = new FileInputStream(fileName);
            int length = in.available();
            byte[] buffer = new byte[length];
            in.read(buffer);
            in.close();
            String content = EncodingUtils.getString(buffer, "UTF-8");
            return content;
        } catch (FileNotFoundException e) {
            return "";
        } catch (IOException e) {
            return "";
        }
    }

该函数忽略一切错误。。。

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。