Seminar Ip Finder Report
Seminar Ip Finder Report
ON
“ADVANCEDJAVA PROGRAMMING”
"PREPARE A IPADDRESS USING SWING"
By:
Mr. Hitesh Ravindra Wankhede.
Enrollment No:- 23051031245510
Roll No:174
Under the guidance of
Prof. B. S. Parakh sir
1|Page
S.S.V.P.S.’s B.S. DEORE COLLEGE OF
ENGINEERING,Dhule,2023-2024
CERTIFICATE
Done By :
Hitesh Ravindra Wankhede (23051031245510)
2|Page
Prof. B.S. Parakh sir . Prof. Dr. B. R. Mandre sir
Principal:
Dr. Hitendra D. patil sir
Place: Dhule.
Acknowledgement
This Seminar I report has taken its current shape after a lot of hard
work and perseverance-not only just by me. I would like to express
our sincere gratitude for the assistance and support of a number of
people who are helping to make this success.
3|Page
Engineering, Dhule ) for providing facilities during progress of the
thesis.
4|Page
3. AIMS / BENEFITS OF THE PROJECT……………………………… 4
11. CONCLUSION……………………………….……………………..21
12. REFEREANCES…………………………………………………….21
6|Page
4.0 RESOURCES REQUIRED :
3 Software eclipse 1
174
Hitesh Ravindra Wankhede
7|Page
DEPARTMENT OF COMPUTER AND ENGINEERING
****************************************************************
1.0 RATIONALE :
8|Page
4.0 LITERATURE REVIEW :
9|Page
particularly for clientserver web applications, with a reported
9 million developers.
Actuall Coding :-
package project;
import javax.swing.*;
import java.awt.event.*;
import java.net.*;
public class IPFinder extends JFrame implements
ActionListener{
JLabel l;
JTextField tf;
JButton b; IPFinder(){
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)
12 | P a g e
;
b.setBounds(50,150,80,30);
b.addActionListener(this);
add(l); add(tf);
add(b);
setSize(300,3
00); setLayout(nu
ll);
setVisible(tru
e);
}
public void actionPerformed(ActionEvent e){
String url=tf.getText();
try {
InetAddress ia=InetAddress.getByName(url);
String ip=ia.getHostAddress();
JOptionPane.showMessageDialog(this,ip);
} catch (UnknownHostException e1) {
JOptionPane.showMessageDialog(this,e1.toString());
} }
public static void main(String[] args)
{ new IPFinder();
}
}
13 | P a g e
OUTPUT OF CODE:-
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
14 | P a g e
Example :- this is www.GOOGLE.com IP address
CONCLUSION:-
16 | P a g e
REFERENCES: -
2. Head First EJB 3.0 by Kathy Sierra, Bert Bates, Publisher: O'Reilly
Media
3. Head First Servlets and JSP by Bryan Basham, Kathy Sierra &
Bert Bates, Publisher: O'Reilly Media
6. http://www.programmingearth.com
17 | P a g e