Avatar Image Full Name :Ranjith
Username : admin
Articles : 0
Description :
Status message :

Java program to display the IP Address of a particular Host

Friday, April 30th, 2010 - 0 Comment

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); } }

Java program to display Local machines IP Address

Friday, April 30th, 2010 - 1 Comment

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)); } }

java program for Client-Server Program using TCP/IP

Friday, April 30th, 2010 - 28 Comments

Program : Client-Server Program using TCP/IP By : Kapil Lohia Program 1:   import java.net.*; import java.io.*;   class tcpip_server { public static void main(String args[]) throws IOException { ServerSocket n1=null; try { n1=new ServerSocket(98); } catch(IOException e) { System.err.println("Port 98 could not be found"); System.exit(1); } Socket c=null; try { c=n1.accept(); System.out.println("Connection from "+c); [...]

DatagramSocket and DatagramPacket (Client-Server Program using UDP/IP)

Friday, April 30th, 2010 - 4 Comments

Program : DatagramSocket and DatagramPacket (Client-Server Program using UDP/IP) By : Kapil Lohia Program 1 :   import java.net.*;   class udpip_server { public static DatagramSocket ds; public static byte buffer[]=new byte[1024];   public static void Myserver() throws Exception { int pos=0; while(true) { int c=System.in.read(); switch(c) { case -1: System.out.println("Server quits"); return; case ‘\r’:break; [...]

Java program for Uniform Resource Locator (URL)

Friday, April 30th, 2010 - 0 Comment

Program : Uniform Resource Locator (URL) By : Kapil Lohia import java.net.*; import java.io.*;   class url { public static void main(String args[]) throws Exception { URL n1 = new URL("http://java.sun.com:80/docs/index#down"); System.out.println("Protocol:"+n1.getProtocol()); System.out.println("Host :"+n1.getHost()); System.out.println("File Name :"+n1.getFile()); System.out.println("Port :"+n1.getPort()); System.out.println("Reference :"+n1.getRef()); } }

C program to implement tower of Hanoi problem

Sunday, April 4th, 2010 - 7 Comments

To implement tower of Hanoi problem. #include<stdio.h> void hanoi_tower(char,char,char,int); void hanoi_tower(char peg1,char peg2,char pege3,int n) { if(n<=0) printf("\n Illegal Entry"); if(n==1) printf ("\n Move disk from %c to %c", pege1,pege3); else { hanoi_tower(peg1,peg3,peg2,n-1); hanoi_tower(peg1,peg2,peg3,1); hanoi_tower(peg2,peg1,peg3,n-1); } } Void main () { int n; printf("\n Input the number of dise:); scanf("%d", &n); printf("\n Tower of Hanoi [...]

Java program to implement a shape selector from a given set of shapes

Sunday, April 4th, 2010 - 5 Comments

To implement a shape selector from a given set of shapes import java.awt.*; import java.awt.event.*; import java.applet.*;   public class shape extend Applet implements itemListener { Chekbox reet,circle,line; ChekboxGroup cbg;   String msg; String s1="reet"; String s2="circle"; string s3="line"; publice void init() { cbg=new checkboxGroup();   rect = new checkbox("reet,cbg,tru); circle = new Checkbox("circle",cbg.false); line [...]

Java program to implement a Color Section from a given set of Color.

Sunday, April 4th, 2010 - 4 Comments

To implement a Color Section from a given set of Color. import java.awt*; import java.awt.event.*; import java.applet.*;   public class fillcolor extends Applet implement Item Listener { checkbox red,yellow,black,blue.orange; CheckboxGroup cbg; String msg; String s1="red"; String s2="yellow"; String s3="black"; String s4="orange"; public void init() { cbg = new CheckboxGroup(); red = new Chechbox("red",cbg,true); yellow= new [...]

C program for sorting a Linked List

Sunday, April 4th, 2010 - 1 Comment

C program for sorting a Linked List. #include<stdio.h> #include<dirent.h> #include<malloc.h> #include<string.h>   void main (int argc,char * argv[]) { DIR * directory_pointer; struct dirent* entry; struct File list { char filename[64]; struct File * new; } start,*node,* previous, * new; if((directory_pointer=opendir(argv[1]))==NULL) printf("Error opening %s\n", argv[1]); else { start.next + NULL; while (entry = readdir (directory_pointer)) [...]

C program to Implement Morse code to text conversion and vice-versa.

Sunday, April 4th, 2010 - 4 Comments

C program to Implement Morse code to text conversion and vice-versa. #include<stdio.h> #include<conio.h> #include<string.h> #include<process.h>   void main() { char str[25],str1[100]; clrscr(); fflush(stdin); printf("enter the String"); gets(str);   int j=0; for(int i=0;i<=strlen(str);++) { switch(toupper(str[i])) { case ‘A’: str1[j++]=’.'; str1[j]=’.'; break;   case ‘b’: str1[j++]=’.'; str1[j++]=’.'; str1[j++]=’.'; str1[j]=’.'; break;   case ‘c’: str1[j++]=’.'; str1[j++]=’.'; str1[j++]=’.'; str1[j]=’.'; [...]

Question and Answer
C/C++ Unix & Linux Wordpress
Source codes
C C++ Java

Free email signup

Email: