Android文本读写

//写文件操作
   public void writeFileData(String fileName, String message){
        try{
            FileOutputStream fout = openFileOutput(fileName, MODE_PRIVATE);
            byte[] bytes = message.getBytes();
            fout.write(bytes);
            fout.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }

//读文件操作
    public String readFileData(String fileName){
        String res = "";
        try {
            FileInputStream fin = openFileInput(fileName);
            int length = fin.available();
            byte[] buffer = new byte[length];
            fin.read(buffer);
            res = EncodingUtils.getString(buffer, "UTF-8");
            fin.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return res;
    }

上一篇:FTP连接时出现“227 Entering Passive Mode” 的解决方法


下一篇:SIM卡是什么意思?你所不知道的SIM卡知识扫盲(详解)【转】