|
 |
8³â Àü |
private void dataSaveLog(String _log, String _fileName)
{
/* SD CARD ÇÏÀ§¿¡ LOG Æú´õ¸¦ »ý¼ºÇϱâ À§ÇØ ¹Ì¸® dirPath¿¡ »ý¼º ÇÒ Æú´õ¸íÀ» Ãß°¡ */
String dirPath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/LOG/";
File file = new File(dirPath);
// ÀÏÄ¡ÇÏ´Â Æú´õ°¡ ¾øÀ¸¸é »ý¼º
if (!file.exists())
file.mkdirs();
// txt ÆÄÀÏ »ý¼º
File savefile = new File(dirPath + "LOG_" + _fileName + ".txt");
try {
BufferedWriter bfw = new BufferedWriter(new FileWriter(dirPath + "LOG_" + _fileName + ".txt", true));
bfw.write(_log);
bfw.write("\n");
bfw.flush();
bfw.close();
} catch (IOException e)
{
/* Exception */
}
} |
|
̵̧ : 319 |
̵̧
¸ñ·Ï
|
|