Siddik
Siddik
Siddik
We would like to express our thanks to the people who have helped us
most throughout our project. We would like to express our sincere thanks to the
principal of CSMSS College of Polytechnic Prof. Ganesh B. Dongre for being
always with us as a motivator. We are thankful to the H.O.D. of Applied
Science Department Mr. ShivamMr.Sandeep Mr.Rushikesh for her kind support.
We are grateful to our Project Guide MR. S. L. Ushalwar for nonstop support
and continuous motivation for the project. His help made us possible to complete
our project with all accurate information. A special thanks of our goes to our
friends who helped us in completing the project, where they all exchanged their
own interesting ideas. We wish to thanks our parents for their personal support or
attention who inspired us to go our own way. Finally, we would like to thank
God who made all things possible for us till the end.
……………….. INDEX…………………….
5. LITERATURE REVIEW…………………………………………5 - 14
3. USE SOME OF COMPONET AND JAVA IDE TO BUILD A BASIC JAVA IPADDRESS
2. SWING API.
4 Specifications Quantity
All Remarks
Sr.N NameRelevant
Select of Resource / for
Topic Micro- 21/02/2020 21/02/2020
o. Material
Project .
15 Computer RAMforminimum 8GB,
28/02/2020 05/03/20201 All
Perform JAVA PROGRAM
Micro- Project . TH
I7 9 GEN
26 Operating
Make System
Project Report forWindows 07/03/2020
Micro- 10 16/03/20201 All
3 Project.
Software eclipse 1
RESOURCES REQUIRED :
SANDEEP PRADHAN 02
RUSHIKESH MALINI 03
****************************************************************
Mr.S.L. Ushalwar
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.
2.0 AIMS / BENEFITS OF THE MICRO PROJECT :
Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by
Oracle) and released in 1995 as a core component of Sun Microsystems' Java platform. The original and
reference implementation Java compilers, virtual machines, and class libraries were originally released by
Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java
Community Process, Sun had relicensed most of its Java technologies under the GNU General Public
License. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation
is the OpenJDK JVM which is free open source software and used by most developers and is the default
JVM for almost all Linux distributions.
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 occur red 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
Regarding to Oracle Java distribution, version 11 is the currently supported long-term support
(LTS) version (and Java 8 LTS to some degree). ("Oracle Customers will receive Oracle Premier
Support"); Oracle released for the "legacy" Java 8 LTS the last free software "public update" in January
2019 for commercial use, while Oracle continues to release no-cost public updates for Java 8 for e.g.
development and personal use indefinitely. Java 10 is the previously supported rapid release version.
Java 10 support ended on the same date that support for Java 11 began, in September 2018. Java 7 is no
longer publicly supported, and Java 9 has stopped receiving updates since Java 9 was a short-term rapid
release version that has been superseded by Java 10 and now Java 11. For Java 11, long-term support
will not be provided by Oracle for the public; instead, the broader OpenJDK community, as
AdoptOpenJDK or others, is expected to perform the work. development.
Actuall Coding :-
package project; import
javax.swing.*; import
java.awt.event.*;
import java.net.*;
JLabel l;
JTextField tf;
JButton b; IPFinder()
URL:");
l.setBounds(50,70,150,20);;
tf=new JTextField();
tf.setBounds(50,100,200,20);
b.setBounds(50,150,80,30);
b.addActionListener(this);
add(l); add(tf);
add(b);
setSize(300,300);
setLayout(null);
setVisible(true);
String url=tf.getText();
try {
public void actionPerformed(ActionEvent e){
InetAddress ia=InetAddress.getByName(url);
String ip=ia.getHostAddress();
JOptionPane.showMessageDialog(this,ip);
JOptionPane.showMessageDialog(this,e1.toString());
}
OUTPUT OF CODE:-
IP FINDING Frame which take and input for web site in the fromat for
www.domainname.co m so it will return a IP address of that website it can be use for ip
tracking device
● Applications of IP Finder:
Mr.S.L.
Ushalwar
Department of Computer Science and Engineering.