AJP MIRCO-Project 2
AJP MIRCO-Project 2
ON
“IP FINDER USING SWING”
SUBMITTED TO
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION,
MUMBAI
SUBMITTED BY
GUIDED BY
S. B. JADHAV
CERTIFICATE
This is to Certify that the project report entitled “ IP FINDER USING
SWING ” Was successfully completed by Student of fourth semester
Diploma in (Computer Technology).
GUIDE HOD
S. B. JADHAV G. N. JORVEKAR
DEPARTMENT STAMP
ACKNOWLEDGEMENT
Date :
Place : Kopargaon
••••••••••••••••••••••••••••••••• INDEX ••••••••••••••••••••••••••••••••••••
2. RATIONALE
5. LITERATURE REVIEW
Name of Resource
Sr.No. Specifications Quantity Remarks
/ Material
RAM minimum 2GB,
1 Computer 1
I3 9TH GEN
2 Operating System Windows 10 1
3 Software eclipse 1
****************************************************************
MICRO-PROJECT REPORT
TITLE : PREPARE A JAVA PROGRAM TO GET IP ADDRESS
1.0 RATIONALE :
The idea of this micro-project is to make a We can develop IP Finder in java with the help
of Networking AWT/Swing with event handling. Let's see the code of creating IP Finder in
java.
In addition to the language changes, other changes have been made to the Java Class
Library over the years, which has grown from a few hundred classes in JDK 1.0 to over
three thousand in J2SE
5. Entire new APIs, such as Swing and Java2D, have been introduced, and many of the
original JDK 1.0 classes and methods have been deprecated. Some programs allow
conversion of Java programs from one version of the Java platform to an older one (for
example Java 5.0 backported to 1.4) (see Java backporting tools).
Java 15 General Availability occurred on September 15, 2020, with Java 16 now in
Rampdown Phase Two (Initial Release Candidate expected February 4, 2021), and with Java
17 now also in development.
Actual Coding :-
import javax.swing.*;
import java.awt.event.*;
import java.net.*;
public class Microproject extends JFrame implements ActionListener{
JLabel l;
JTextField tf;
JButton b;
Microproject(){
super("IP Finder Tool - Javatpoint");
l=new JLabel("Enter URL:");
l.setBounds(50,70,150,20);
tf=new JTextField();
tf.setBounds(50,100,200,20);
IP FINDING Frame which take and input for web site in the fromat for
www.domainname.com so it will return a IP address of that website it can be use for ip
tracking device
Conclusion :
In this project i have used swing components like JButton, JTextField, JLabel,
ActionEvents, InetAddress. With this we can find IP Address of any website that you need to
find just by entering the URL of website like WWW.GOOGLE.COM you can get the IP
address of website you want.