0% found this document useful (0 votes)
4 views2 pages

List 12

The document contains a Java program that appends text to an existing file named 'new.txt'. It uses RandomAccessFile to seek the end of the file and write new input from the user. The output demonstrates the program's functionality by showing the updated contents of 'new.txt' after multiple entries.

Uploaded by

mmabishek4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

List 12

The document contains a Java program that appends text to an existing file named 'new.txt'. It uses RandomAccessFile to seek the end of the file and write new input from the user. The output demonstrates the program's functionality by showing the updated contents of 'new.txt' after multiple entries.

Uploaded by

mmabishek4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

// APPENDING TEXT TO THE EXISTING FILE

import java.io.*;
class list12
{
public static void main(String args[])
{
RandomAccessFile newfile;
try
{
newfile=new RandomAccessFile("new.txt","rw");
newfile.seek(newfile.length());
DataInputStream in=new DataInputStream(System.in);
System.out.println("Enter the text to be updated");
String s=in.readLine();
newfile.writeBytes(s);
newfile.close();
}
catch(IOException e)
{
System.out.println(e);
}
}
}

//list12.html

<HTML>
<BODY>
<APPLET CODE="list12.java" WIDTH=400 HEIGHT=400>
</APPLET>
</BODY>
</HTML>
OUTPUT:

D:\jdk1.8.0_111\bin>edit new.txt

D:\JDK18~2.0_1\bin>type new.txt
MY NAME IS SENTHILKUMAR
I AM WORKING ASSISTANT PROFESSOR

D:\JDK18~2.0_1\bin>java list12
Enter the text to be updated
GOVERNMENT ARTS AND SCIENCE COLLEGE

D:\JDK18~2.0_1\bin>java list12
Enter the text to be updated
AVINASHI

D:\JDK18~2.0_1\bin>type new.txt
MY NAME IS SENTHILKUMAR
I AM WORKING ASSISTANT PROFESSOR
GOVERNMENT ARTS AND SCIENCE COLLEGEAVINASHI

You might also like