/**
* 文件存儲數據方式工具類
*
* @author liqiwu
*/
public class FileUtil {
/**
* 保存文件內容
*
* @param c
* @param fileName
* 文件名稱
* @param content
* 內容
* @throws IOException
* 建立的存儲文件保存在/data/data/<package name>/files文件夾下。
*/
public static void writeFiles(Context c, String fileName, String content, int mode) throws IOException {
// 打開文件獲取輸出流,文件不存在則自動建立
FileOutputStream fos = c.openFileOutput(fileName, mode);
fos.write(content.getBytes());
fos.flush();
fos.close();
} 工具
/**
* 讀取文件內容
*
* @param c
* @param fileName
* 文件名稱
* @return 返回文件內容
* @throws IOException
*/
public static String readFiles(Context c, String fileName) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
FileInputStream fis = c.openFileInput(fileName);
byte[] buffer = new byte[1024];
int len = 0;
while ((len = fis.read(buffer)) != -1) {
baos.write(buffer, 0, len);
}
baos.flush();
fis.close();
baos.close();
String content = baos.toString();
return content;
}
} .net