[Á¤º¸]È­ÀÏ¿¡ appendÇϱâ


[ Follow Ups ] [ Post Followup ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]

Posted by ¹é½Â¿ë on September 19, 1997 at 17:31:30:

In Reply to: file¿¡ appendÇϱâ posted by ÀÓäÀÏ on September 13, 1997 at 14:20:30:

È­ÀÏ¿¡ text appendÇÏ´Â ¿¹Á¦ ¼Ò½ºÀÔ´Ï´Ù.


public void Savecontent(String str1, String str2)
{
RandomAccessFile output = null;
System.out.println(str1 + "|" + str2);
try {
//È­ÀÏÀÌ Á¸ÀçÇÏÁö ¾ÊÀ»¶§´Â È­ÀÏÀ» ¸¸µç´Ù.
output = new RandomAccessFile(str2, "rw");
} catch (Exception e) {
System.out.println("Coudn't open " + str2);
}
try {
//È­ÀÏÀÇ ³¡À» ã´Â´Ù.
output.seek(output.length());
//È­ÀÏ¿¡ ³»¿ë Ãß°¡
output.writeBytes(str1 + "\n");
} catch (Exception e1) {
System.out.println("Error appending");
}
}


Follow Ups:



À̾ ±Û¿Ã¸®±â(´äÇϱâ)

À̸§:
E-Mail:
Á¦¸ñ:
³»¿ë:
°ü·Ã URL(¼±ÅÃ):
URL Á¦¸ñ(¼±ÅÃ):
°ü·Ã À̹ÌÁö URL:


[ Follow Ups ] [ Post Followup ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]