Read Also:
1. Games With JavaScript Codes: Make A Snake Game With Notepad
2. Create Youtube like Rating with Jquery and Ajax
3. Top Java Software Errors: 50 Common Java Errors and How to Avoid Them
After finished your programs in Java with below codes, you will able to see this image like screenshot appear.
IP Finder in java with source code
String url=”www.javatpoint.com“; InetAddress ia=InetAddress.getByName(url); String ip=ia.getHostAddress();
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);
b=new JButton(“Find IP”);
b.setBounds(50,150,80,30);
b.addActionListener(this);
add(l);
add(tf);
add(b);
setSize(300,300);
setLayout(null);
setVisible(true);
}
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();
}
}