<?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>Local machines IP Address | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/local-machines-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:51:24 +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 Local machines IP Address</title>
		<link>https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-local-machines-ip-address/</link>
					<comments>https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-local-machines-ip-address/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Fri, 30 Apr 2010 05:51:24 +0000</pubDate>
				<category><![CDATA[Advanced programs]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Local machines IP Address]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1168</guid>

					<description><![CDATA[<p>Program : To display Local machines IP Address By : Kapil Lohia import java.net.*; import java.io.*; public class ip_localmachine { public static void main(String args[]) throws Exception { InetAddress ipadd =InetAddress.getLocalHost(); System.out.println("Host and Address :"+ipadd); System.out.println("Host name :"+ipadd.getHostName()); String n=ipadd.toString(); System.out.println("IP address :"+n.substring(n.indexOf("/")+1)); } }</p>
<p>The post <a href="https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-local-machines-ip-address/">Java program to display Local machines IP Address</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Program : To display Local machines IP Address<br />
By : Kapil Lohia </p>
<pre lang="java">
import java.net.*;
import java.io.*;

public class ip_localmachine
{
	public static void main(String args[]) throws Exception
	{
		InetAddress ipadd =InetAddress.getLocalHost();
		System.out.println("Host and Address :"+ipadd);
		System.out.println("Host name :"+ipadd.getHostName());

		String n=ipadd.toString();
		System.out.println("IP address :"+n.substring(n.indexOf("/")+1));
	}
}
</pre><p>The post <a href="https://studentprojects.in/software-development/java/java-programs/advanced/java-program-to-display-local-machines-ip-address/">Java program to display Local machines IP Address</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-local-machines-ip-address/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
