Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » Java » Programs » Applets » Applet program to display file content
Suryateja Pericherla Categories: Applets. No Comments on Applet program to display file content
4.7
(3)

In this article we will learn to implement a Java Applet program to display file content. An Applet program is provided below that displays the content of the file whose name and extension is sample.txt.

 

Program is as follows:

import java.applet.*;
import java.awt.*;
import java.io.*;
public class MyApplet extends Applet
{
	public void paint(Graphics g)
	{
		String content = "";
		try
		{
			char ch;
			StringBuffer buff = new StringBuffer("");
			FileInputStream fis = new FileInputStream("sample.txt");
			while(fis.available()!=0)
			{
				ch = (char)fis.read();
				buff.append(ch);
			}
			fis.close();
			content = new String(buff);
		}
		catch(FileNotFoundException e)
		{
			System.out.println("Cannot find the specified file...");
		}
		catch(IOException i)
		{
			System.out.println("Cannot read file...");
		}
		g.drawString(content,20,20);
	}
}
/*
<applet code="MyApplet" height="300" width="500">
</applet>
*/

 

Contents of sample.txt file:

Hi, welcome to Java.

 

Output for the above program is as follows:


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


applet-file

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory