<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>display ip address | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/display-ip-address/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Fri, 30 Apr 2010 05:52:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Java program to display the IP Address of a particular Host</title>
		<link>https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-the-ip-address-of-a-particular-host/</link>
					<comments>https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-the-ip-address-of-a-particular-host/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Fri, 30 Apr 2010 05:52:55 +0000</pubDate>
				<category><![CDATA[Advanced programs]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[host ip address]]></category>
		<category><![CDATA[display ip address]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1170</guid>

					<description><![CDATA[<p>Program : To display the IP Address of a particular Host By : Kapil Lohia import java.net.*; import java.io.*; public class ip_host { public static void main(String args[]) throws Exception { System.out.println("Enter the host name :"); String n=new DataInputStream(System.in).readLine(); InetAddress ipadd =InetAddress.getByName(n); System.out.println("IP address :"+ipadd); } }</p>
<p>The post <a href="https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-the-ip-address-of-a-particular-host/">Java program to display the IP Address of a particular Host</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Program : To display the IP Address of a particular Host<br />
By : Kapil Lohia </p>
<pre lang="java">
import java.net.*;
import java.io.*;

public class ip_host
{
	public static void main(String args[]) throws Exception
	{
		System.out.println("Enter the host name :");
		String n=new DataInputStream(System.in).readLine();

		InetAddress ipadd =InetAddress.getByName(n);

		System.out.println("IP address :"+ipadd);
	}
}
</pre><p>The post <a href="https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-the-ip-address-of-a-particular-host/">Java program to display the IP Address of a particular Host</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-the-ip-address-of-a-particular-host/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
