Computer Notes, Programming codes, Hardware and Networking Tip, Entertainment, Biography, Internet Tip, Tech News, Latest Technology, YouTube,
import java.util.Scanner; class Rectangle4{ int l, b; void getData(){ Scanner in = new Scanner(System.in); System.out.print("Enter length : "); l=in.nextInt(); System.out.print("Enter breadth : "); b=in.nextInt(); } void displayArea(){ int a; a = l*b; System.out.println("Area = "+a); } public static void main(String args[]){ Rectangle4 obj = new Rectangle4(); obj.getData(); obj.displayArea(); } }
class Demo{ void display(){ System.out.println("Class Example"); } public static void main(String args[]){ Demo obj = new Demo(); obj.display(); } }
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html" charset=UTF-8"> <title> A simple JSP program </title> </head> <body> <h1> Displaying "I love Programming 100 times !!" </h1> <table> <% for(int i=1; i<=100; i++){ %> <tr> <td> I Love Programming </td> </tr> <% } %> </table> </body> </html>
Output of the given Java program |
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class PTR extends JFrame implements ActionListener //implement listener interface
{
JTextField t1, t2, t3, t4;
JLabel l1,l2,l3, l4;
JButton b1;
public PTR()
{
super("Handling Action Event");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
l1 = new JLabel("Enter P :");
l2 = new JLabel("Enter T :");
l3 = new JLabel("Enter R : ");
l4 = new JLabel("Interest : ");
t1 = new JTextField(10);
t2 = new JTextField(10);
t3 = new JTextField(10);
t4 = new JTextField(10);
b1 = new JButton("Calculate");
setLayout(new FlowLayout(FlowLayout.LEFT,150,10));
add(l1);
add(t1);
add(l2);
add(t2);
add(l3);
add(t3);
add(l4);
add(t4);
add(b1);
b1.addActionListener(this);//Registering event
setSize(400,300);
setVisible(true);
}
public void actionPerformed(ActionEvent ae) //Handle Event
{
int p, t, r, si;
p = Integer.parseInt(t1.getText());
t = Integer.parseInt(t2.getText());
r = Integer.parseInt(t3.getText());
if(ae.getSource() == b1)
si = (p*t*r)/100;
else
si = 0;
t4.setText(String.valueOf(si));
}
public static void main(String a [])
{
new PTR();
}
}
import java.util.Scanner; class EvenArray{ public static void main(String args[]){ Scanner in = new Scanner(System.in); int x, y; System.out.print("Enter First Number : "); x = in.nextInt(); System.out.print("Enter Second Number : "); y = in.nextInt(); for(int i=x; i<=y; i++){ if(i%2==0){ System.out.println(i); } } } }
The thread is a lightweight process that means one single program can be divided into small threads which will execute concurrently for fast execution of task. We can say that thread is a sub process of a process.
A thread is an independent path of execution within a program. Many thread can run concurrently within a program. Every threads in Java is created and controlled by the java.lang thread class. A java program can have many threads, and these threads can run currently, either synchronously or asynchronously.
- Threads are lightweight compared to process.
Difference between thread and process
Process | Thread |
---|---|
- A Process is an instance of a program. It contains a threads. | - Threads are the parts of process. It cannot contain a process. |
- Process run in its separate. | - Thread run in shared memory spaces. |
- Process is controlled by the operating system. | - Threads a re controlled by programmer in a program. |
- Processes are independent. | - Threads are dependent. |
- New processes require duplication of the parent process. | - New threads are easily created. |
- Process require more time for context switching as they are more heavy. | - Threads require less time for context switching as they are lighter then process. |
- Process require more resources then threads. | - Threads generally need less resources than process. |
- Process require more time for termination. | - Threads require less time for termination. |
Life cycle of threads
New
The thread is in new state if you create an instance of thread class but before the invocation of start() method.
Runnable
A thread in the runnable state is executing the Java virtual machine but it may be waiting for other resources from the operating system such as processor.
Running
The thread is in running state if the thread scheduler has selected it.
Blocked (Non Runnable)
It is the state when the thread is still alive, but is currently not eligible to run.
Terminated
A thread is in terminated or dead state when its run() method exists.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class Student extends JFrame implements ActionListener
{
JLabel sid,sname,slevel;
JTextField tid,tname, tlevel;
JButton insert, clear;
JPanel p1,p2,p3,p4;
Student()
{
setSize(400,250);
setTitle("Students Data Entry");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
p1=new JPanel();
p2=new JPanel();
p3=new JPanel();
p4=new JPanel();
setLayout(new BorderLayout());
add(p1,BorderLayout.CENTER);
add(p2,BorderLayout.SOUTH);
p1.setLayout(new GridLayout(1,2));
p1.add(p3);
p1.add(p4);
p3.setLayout(new FlowLayout(FlowLayout.LEFT, 75,20));
p4.setLayout(new FlowLayout(FlowLayout.LEFT, 25,20));
sid=new JLabel("Student ID");
sname=new JLabel("Student Name");
slevel=new JLabel("Level");
p3.add(sid);
p3.add(sname);
p3.add(slevel);
tid=new JTextField(10);
tname=new JTextField(10);
tlevel=new JTextField(10);
p4.add(tid);
p4.add(tname);
p4.add(tlevel);
p2.setLayout(new FlowLayout(FlowLayout.CENTER, 20,20));
insert=new JButton("Insert");
clear=new JButton("Clear");
p2.add(insert);
p2.add(clear);
insert.addActionListener(this);
clear.addActionListener(this);
setVisible(true);
}
public void actionPerformed(ActionEvent ae)
{
Connection c=null;
Statement s=null;
try
{
Class.forName("com.mysql.jdbc.Driver");
c = DriverManager.getConnection("jdbc:mysql://localhost/mydb","root", "raj");
s=c.createStatement();
if(ae.getSource()==insert)
{
int id;
String name, level;
id=Integer.parseInt(tid.getText());
name=tname.getText();
level=tlevel.getText();
String query="insert into studentdb values("+id+",'"+name+"',"+level+")";
s.executeUpdate(query);
JOptionPane.showMessageDialog(this,"Data is Recorded!!!!");
}
if(ae.getSource()==clear)
{
tid.setText("");
tname.setText("");
tlevel.setText("");
}
}
catch(Exception e)
{
System.out.println(e);
}
}
public static void main(String a[])
{
new Student();
}
}
import javax.swing.*; import java.awt.*; import java.awt.event.*; class IFDemo extends JFrame { JDesktopPane dp; JInternalFrame iframe; JTextField tb; JLabel lb; IFDemo() { setSize(400,300); setDefaultLookAndFeelDecorated(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); dp=new JDesktopPane(); iframe=new JInternalFrame("Internal Frame",true,true,true,true); iframe.setSize(200,200); iframe.setLocation(50,50); dp.add(iframe); add(dp); lb=new JLabel("Email"); tb=new JTextField(10); iframe.setLayout(new FlowLayout(FlowLayout.CENTER)); iframe.add(lb); iframe.add(tb); iframe.setVisible(true); } public static void main(String args[]) { IFDemo frame=new IFDemo(); } }
import javax.swing.*; class Menu extends JFrame{ JMenuBar mb; JMenu file, edit, data, name; JMenuItem open, save, sas, cut, copy, paste; JCheckBoxMenuItem raju, indra; Menu(){ setTitle("Menu Demo"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); mb=new JMenuBar(); file=new JMenu("File"); edit=new JMenu("Edit"); data=new JMenu("Data"); name=new JMenu("Name"); open=new JMenuItem("Open"); save=new JMenuItem("Save"); sas=new JMenuItem("Save As"); cut=new JMenuItem("Cut"); copy=new JMenuItem("Copy"); paste=new JMenuItem("Paste"); raju=new JCheckBoxMenuItem("Raju"); indra=new JCheckBoxMenuItem("Indra"); file.add(open); file.add(save); file.add(sas); edit.add(cut); edit.add(copy); edit.add(paste); data.add(name); name.add(raju); name.add(indra); mb.add(file); mb.add(edit); mb.add(data); setJMenuBar(mb); setSize(500, 500); setVisible(true); } public static void main(String args[]){ new Menu(); } }
public class Student{
int roll, marks;
String name;
Student(int r, String n, int m){
roll = r;
name = n;
marks = m;
}
Student(int r, int m, String n){
roll = r;
name = n;
marks = m;
}
void displaInfo(){
System.out.println(roll+"\t"+name+"\t"+marks);
}
public static void main(String args[]){
Student s1 = new Student(1, "Ram", 56);
Student s2 = new Student(2, 89, "Shyam");
System.out.println("Roll \t Name \t Marks");
s1.displaInfo();
s2.displaInfo();
}
}
import java.util.Scanner; class Employee{ int id, salary; String name; public void getData(){ Scanner in = new Scanner(System.in); System.out.println("\nEnter the Following Info of Employee"); System.out.print("Employee ID : "); id = in.nextInt(); System.out.print("Employee Name : "); name = in.next(); System.out.print("Employee Salary : "); salary = in.nextInt(); } public void displayData(){ System.out.println("\n***Employee Details***"); System.out.println("ID = "+id); System.out.println("Name = "+name); System.out.println("Salary = "+salary); } public static void main(String args[]){ Employee em1 = new Employee(); Employee em2 = new Employee(); em1.getData(); em1.displayData(); em2.getData(); em2.displayData(); } }
import java.awt.*; import javax.swing.*; import java.awt.event.*; class Calc extends JFrame implements ActionListener{ JLabel l1, l2, l3; JTextField t1, t2, t3; JButton b1, b2; Calc(){ super("Handling Action Event"); l1 = new JLabel("Enter First Number"); l2 = new JLabel("Enter Second Number"); l3 = new JLabel("Result"); t1 = new JTextField(10); t2 = new JTextField(10); t3 = new JTextField(10); b1 = new JButton("Add"); b2 = new JButton("Subtract"); setLayout(new FlowLayout(FlowLayout.LEFT,90,10)); add(l1); add(t1); add(l2); add(t2); add(l3); add(t3); add(b1); add(b2); b1.addActionListener(this); b2.addActionListener(this); setSize(300, 300); setVisible(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void actionPerformed(ActionEvent ae){ int x, y, z; x=Integer.parseInt(t1.getText()); y=Integer.parseInt(t2.getText()); if(ae.getSource() == b1){ z = x + y; }else{ z = x - y; } t3.setText(String.valueOf(z)); } public static void main(String args[]){ new Calc(); } }
public class TestFinally{ public static void main(String args[]){ try{ int x = 20/0; System.out.println("Quoitent = "+x); } catch(ArithmeticException e){ System.out.println("e.getMessage"); } finally{ System.out.println("Finally block is always executed"); } System.out.println("Rest of the Codes .... "); } }
import javax.swing.*; class MenuDemo extends JFrame{ JMenuBar mb; JMenu file, edit, format; JMenuItem open, save, save_as, exit, undo, redo; MenuDemo(){ setTitle("Menu Bar"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); mb=new JMenuBar(); file=new JMenu("File"); edit=new JMenu("Edit"); format=new JMenu("Format"); open=new JMenuItem("Open"); save=new JMenuItem("Save"); save_as=new JMenuItem("Save As"); exit=new JMenuItem("Exit"); undo=new JMenuItem("Undo"); redo=new JMenuItem("Redo"); file.add(open); file.add(save); file.add(save_as); file.add(exit); edit.add(undo); edit.add(redo); mb.add(file); mb.add(edit); mb.add(format); setJMenuBar(mb); setSize(300, 200); setVisible(true); } public static void main(String args[]){ new MenuDemo(); } }