JAVA Unit 6
JAVA Unit 6
Applets:
Concepts of applets,
differences between applets and applications,
life cycle of an applet,
types of applets,
creating applets,
passing parameters to applets.
Networking:
Basics of network programming,
addresses, ports, sockets, simple client server program,
multiple clients, sending file from server to client.
1
Applets
2
What is an applet?
• a small Java program that can be inserted into a web page and
run by loading that page in a browser.
4
Applet classes in Java
• Implementation
– a top-level container, like a Frame.
– This is why you don’t see these items when an applet is run
inside a browser.
– java.applet.Applet
5
How Applets Differ from Applications
• Although both the Applets and stand-alone
applications are Java programs, there are certain
restrictions are imposed on Applets due to security
concerns:
– Applets don’t use the main() method, but when they are loaded,
automatically call certain methods (init, start, paint, stop,
destroy).
– They are embedded inside a web page and executed in browsers.
– Takes input through Graphical User Interface(GUI).
– They cannot read from or write to the files on local computer.
– They cannot run any programs from the local computer.
– They are restricted from using libraries from other languages.
• The above restrictions ensures that an Applet cannot
do any damage to the local system.
6
Building Applet Code: An Example
import java.awt.*;
import java.applet.Applet;
public class SimpleApplet extends Applet {
public void paint(Graphics g) {
g.drawString ("A Simple Applet",20, 20);
}
}
Begins with two import classes.
java.awt.* -- required for GUI
java.applet.* -- every applet you create must be a subclass
of Applet, which is in java.applet package.
The class should start with public, because it is accessed
from outside.
7
• Applets do not begin execution at main().
8
Running an Applet
9
Executing in a web browser.
• To execute an applet in a web browser, you need to write a
short HTML file that contains a tag (Applet) that loads the
applet.
<APPLET code="SimpleApplet"
width=400 height=300> </APPLET>
• After you create this file, open your browser and then load this
file, which causes SimpleApplet to be executed.
11
Executing by using appletviewer
12
• There are two ways
• C:\>appletviewer SimpleApplet.html
13
Output:
14
2. Include a comment at the beginning of your
source code file that contains the applet tag, then
start applet viewer with your java source code file.
• C:\>appletviewer SimpleApplet.java
15
Ex:-
import java.awt.*;
import java.applet.Applet;
/* <applet code="SimpleApplet" width=400
height=300 ></applet> */
public class SimpleApplet extends Applet {
public void paint(Graphics g) {
g.drawString ("A Simple Applet",20, 20);
}
}
Compile and then execute by using following
command
C:\>appletviewer SimpleApplet.java 16
Output:
17
Structure of an applet
import java.awt.*;
import java.applet.*;
/*
<applet code="AppletStructure" width=300 height=100>
</applet>
*/
public class AppletStructure extends Applet {
// Called first.
public void init() {
// initialization
}
init()
Begin Born
stop()
start()
Running Idle
destroy()
paint() start()
Dead End
21
Applet States
init()- called only once
– The init( ) method is the first method to be called.
– This is where you should initialize variables.
– This method is called only once during the run time of
your applet.
23
stop( ) - called more than once
• You can restart them when start( ) is called if the user returns
to the page.
24
destroy( ) - called only once
• At this point, you should free up any resources the applet may
be using.
25
Creating Applets
/* A simple applet that sets the foreground and
background colors and outputs a string. */
import java.awt.*;
import java.applet.*;
/*
<applet code="Sample" width=300 height=50>
</applet>
*/
public class Sample extends Applet{
String msg;
// set the foreground and background colors.
public void init() {
setBackground(Color.green);
setForeground(Color.red);
msg = "Inside init( ) --";
}
// Initialize the string to be displayed.
public void start() {
msg += " Inside start( ) --"; 26
}
// Display msg in applet window.
public void paint(Graphics g) {
msg += " Inside paint( ).";
g.drawString(msg, 10, 30);
}
public void stop()
{
System.out.println("Inside stop( )");
}
public void destroy()
{
System.out.println("Inside destroy( )");
} Output:
}
27
After closing appletviewer stop( ) and destroy( ) methods will be called.
28
Applet Program Accepting Parameters
//HelloAppletMsg.java
import java.applet.Applet;
import java.awt.*;
/* <APPLET
CODE="HelloAppletMsg" width=200 height=200>
<PARAM NAME="Greetings" VALUE="Hello World!">
</APPLET> */
String msg;
This is name of parameter specified in PARAM tag;
This method returns the value of paramter.
public void init()
{
msg = getParameter("Greetings");
if( msg == null)
msg = "Hello";
29
}
public void paint(Graphics g) {
g.drawString (msg,50, 100);
}
}
Output:
30
Types of applets
• There are two types of applets.
– First is based on the Applet class
• These applets use the AWT classes to provide the GUI.
• This style of applet has been available since java was
created.
• It is used for simple GUI’s.
– The second is based on the Swing class JApplet.
• These applets use the Swing classes to provide the GUI.
• Swing offers a richer and easy to use interface than
AWT .
• Swing based applets are more popular.
31
Basics of network programming
IP Address
• 32-bit identifier
• Dotted-quad: 192.118.56.25
• Identifies a host
192.118.56.25
32
Ports
Port 80 25 23
192.18.22.13 33
Sockets
• Socket is an object used for network programming.
• A socket is bound to a specific port number
• Network communication using Sockets is very much similar to
performing file I/O
34
Socket Communication
Connection request
port
Server
Client
35
• If everything goes well, the server accepts the connection.
Upon acceptance, the server gets a new socket bounds to a
different port. It needs a new socket (consequently a different
port number) so that it can continue to listen to the original
socket for connection requests while serving the connected
client. port
server
port
Client
port Connection
36
Client-Server communication
Server
socket()
bind()
Client
listen()
socket()
accept()
connect()
block
write()
read()
process
request
write()
read() 37
Java’s .net package
38
Implementing a Server
1. Open the Server Socket:
ServerSocket server = new ServerSocket( PORT );
2. Wait for the Client Request:
Socket s = server.accept();
3. Create I/O streams for communicating to the client
DataInputStream dis = new DataInputStream( s.getInputStream() );
DataOutputStream dos = new DataOutputStream( s.getOutputStream() );
4. Perform communication with client
Receive data from client: String line = dis.readLine();
Send data to the client: dos.write ("Hello\n");
5. Close sockets: s.close();
39
Implementing a Client
40
Simple client-serever program
A simple server (simplified code)
// SimpleServer.java: a simple server program
import java.net.*;
import java.io.*;
public class SimpleServer
{
public static void main(String args[]) throws IOException
{
// Register service on port 1234
ServerSocket server = new ServerSocket(1234);
Socket s=server.accept(); // Wait and accept a connection
System.out.println("Connection Established");
// Get a communication stream associated with the socket
DataOutputStream dos = new DataOutputStream(s.getOutputStream());
// Send a string!
dos.writeBytes("Hello Client");
// Close the connection, but not the server socket
dos.close();
s.close();
} 41
}
A simple client (simplified code)
// SimpleClient.java: a simple client program
import java.net.*;
import java.io.*;
public class SimpleClient
{
public static void main(String args[]) throws IOException
{ server_IP
// Open your connection to a server, at port 1234
Socket client = new Socket("localhost",1234);
// Get an input file handle from the socket and read the input
DataInputStream dis = new DataInputStream(client.getInputStream());
String str = dis.readLine();
System.out.println(str);
// When done, just close the connection and exit
dis.close();
client.close();
}
} 42
Server side
Client side
43
Serving Multiple Clients
Multiple clients are quite often connected to a single server at the same time.
Typically, a server runs constantly on a server computer, and clients from all over
the Internet may want to connect to it. You can use threads to handle the server's
multiple clients simultaneously. Simply create a thread for each connection. Here is
how the server handles the establishment of a connection:
while (true) {
Socket socket = serverSocket.accept();
Thread thread = new Thread(new ThreadClass(socket));
thread.start();
}
The server socket can have many connections. Each iteration of the while loop
creates a new connection. Whenever a connection is established, a new thread is
created to handle communication between the server and the new client; and this
allows multiple connections to run at the same time.
44
Example: Serving Multiple
Clients
Server
A serve socket
on a port
Server for Multiple Clients A socket for a A socket for a
client client
Start Server
Client 1 ... Client n
Start Client
45
Sending file from server to client
Server program
import java.io.*;
import java.net.*;
class FTServer{
public static void main(String args[])throws Exception{
ServerSocket ss=new ServerSocket(2424);
Socket s=ss.accept();
System.out.println("Connection Established\n");
File myFile = new File (“E:/Programs/SortImpl.java");
FileInputStream fis = new FileInputStream(myFile);
DataInputStream dis=new DataInputStream(fis);
byte [] mybytearray = new byte [(int)myFile.length()];
dis.read(mybytearray,0,mybytearray.length);
DataOutputStream dos=new DataOutputStream(s.getOutputStream());
dos.write(mybytearray,0,mybytearray.length);
System.out.println("File has been sent successfully...");
s.close();
dos.close();
fis.close();
dis.close();
} 46
}
Client program
import java.io.*;
import java.net.*;
class FRClient{
public static void main(String args[])throws Exception{
Socket s=new Socket("localhost",2424);
System.out.println("waiting for File from Server.....");
DataInputStream dis=new DataInputStream(s.getInputStream());
String str;
boolean b=true;
while(b){
str=dis.readLine();
if(str==null)
b=false;
else
System.out.println(str);
}
dis.close();
s.close();
}
} 47
48