Add to Favorites    Make Home Page 1400 Online  
 Language Categories  
 Our Services  

Home » Java Home » Networking Home » HTTP Server in Java

A D V E R T I S E M E N T

Search Projects & Source Codes:

Title HTTP Server in Java
Author Abhishek K. Dhote
Author Email abhishekdhote [at] rediffmail.com
Description This is the implementation of Hyper Text Transfer Protocol in Java.This program can be use as sever which is able to process requsts for HTML pages.

To execute the program using LOCALHOST follow the steps:-
1.install HttpServer.java on one system
2.configure your browser using following steps:
a.go to Tools
b.go to Internet Options...
c.go to Connections
d.go to Lan Setting
e.select Use a proxy server for your lan
f.make Address: http://localhost & Port:100
3.run HttpServer.java
4.run browser
5.put filename.html into the bin of jdk
5.place a request using following format:-
http://localhost.filename.html/
where filename.html is the name of the file you
want to request.
Category Java » Networking
Hits 385526
Code Select and Copy the Code
//HttpServer.java import java.io.*; import java.net.*; import java.util.*; import java.lang.*; public class HttpServer { public static void main(String [] args) { int i=1; System.out.println("****************************************************** **************************"); System.out.println("****************************** HTTP SERVER ***********************************"); System.out.println("****************************************************** **************************"); System.out.println("Server Started..."); System.out.println("Waiting for connections..."); try { ServerSocket s = new ServerSocket(100); for(;;) { Socket incoming = s.accept(); System.out.println("New Client Connected with id " + i +" from "+incoming.getInetAddress().getHostName() ); System.out.println(" "); System.out.println(" REQUEST HEADER "); Thread t = new ThreadedServer(incoming,i); i++; t.start(); } } catch(Exception e) { System.out.println("Error: " + e); } } } class ThreadedServer extends Thread { final static String CRLF = " "; Socket incoming; int counter; public ThreadedServer(Socket i,int c) { incoming=i; counter=c; } public void run() { try { String statusline=null; String contenttypeline=null; String contentlength=null; String venderline="Server: EXECUTER 1.1"; String entitybody=null; BufferedReader in =new BufferedReader(new InputStreamReader(incoming.getInputStream())); PrintWriter out = new PrintWriter(incoming.getOutputStream(), true); OutputStream output=incoming.getOutputStream(); String headerline; headerline=in.readLine(); System.out.println(headerline); /*String reqh; boolean done=false; while(!done) { reqh=in.readLine(); if(reqh == null) done = true; else { //out.println("Server>>> " + headerline); System.out.println(reqh); } } */ StringTokenizer s = new StringTokenizer(headerline); String meth = s.nextToken(); if(meth.equals("GET")||meth.equals("POST")) { int dot1,dot2,fslash; String fname,ext,FileName; String url = s.nextToken(); dot1=url.indexOf('.'); dot2=url.lastIndexOf('.'); fslash=url.lastIndexOf('/'); fname=url.substring(dot1+1,dot2); ext=url.substring(dot2,fslash); FileName=fname+ext; // System.out.println("FNAME:"+FileName); if(ext.equals(".html")||ext.equals(".htm")) { FileInputStream fis=null; boolean filexists=true; try { fis=new FileInputStream(FileName); } catch(FileNotFoundException e) { System.out.println("Exception: "+e.getMessage()); filexists=false; } if(filexists) { statusline=" HTTP/1.1 200 Ok"+CRLF; contenttypeline="Content-Type: text/html "+CRLF; contentlength="Content-Length:"+(new Integer(fis.available())).toString() + CRLF; } else { statusline = "HTTP/1.0 404 Not Found" + CRLF ; contenttypeline = "Content-Type: text/html"+CRLF ; entitybody = "<HTML>" + "<HEAD><TITLE>404 Not Found</TITLE></HEAD>" + "<BODY><H1>404 File Not Found</H1></BODY></HTML>" ; } /* System.out.println(" RESPONCE HEADER "); System.out.println(statusline); System.out.println(venderline); System.out.println(contentlength); System.out.println(contenttypeline);*/ output.write(statusline.getBytes()); output.write(venderline.getBytes()); output.write(contentlength.getBytes()); output.write(contenttypeline.getBytes()); output.write(CRLF.getBytes()); if (filexists) { sendBytes(fis, output) ; fis.close(); } else { output.write(entitybody.getBytes()); } } else { statusline = "HTTP/1.0 400 Not Found" + CRLF ; contenttypeline = "Content-Type: text/html"+CRLF ; entitybody = "<HTML>" + "<HEAD><TITLE>400</TITLE></HEAD>" + "<BODY><H1>400 A malformed HTTP request is reived</H1></BODY></HTML>"; } } else { statusline = "HTTP/1.0 400 Not Found" + CRLF ; contenttypeline = "Content-Type: text/html"+CRLF ; entitybody = "<HTML>" + "<HEAD><TITLE>400</TITLE></HEAD>" + "<BODY><H1>400 A malformed HTTP request is reived</H1></BODY></HTML>"; } boolean done=false; while(!done) { headerline=in.readLine(); if(headerline == null) done = true; else { System.out.println(headerline); } } incoming.close(); in.close(); out.close(); } catch(Exception e) { System.out.println("Error: " + e); } } private static void sendBytes(FileInputStream fis, OutputStream os) throws Exception { byte[] buffer = new byte[1024] ; int bytes = 0 ; while ((bytes = fis.read(buffer)) != -1 ) { os.write(buffer, 0, bytes); } } }

Related Source Codes

Script Name Author
Sending mail Using JavaMail to Yahoo and Gmail accounts sai prasad
Simple Program in Java to Implement Multithreading Satish.K
Simple Calculator in Java Using Remote Method Invocation Satish.K
Guest Book Application Using Servlets Satish.K
String Manipulation Using Stringification Satish.K
String Manipulation Using Stringification Satish.K
Moving Ball Application Using Java Beans Satish.K
Rapid Roll game subrahmanyeswararao
student mgm arpan
Sourav Datta
Download Manager Sagar
Address Book in Java Rahul Chouhan
address book using java database connectivity(jdbc-msaccess) shekhar bansal
sun Steganography B.Rajavel
Connecting Java with MS-Access - Inserting data in Aseem

A D V E R T I S E M E N T




Google Groups Subscribe to SourceCodesWorld - Techies Talk
Email:

Free eBook - Interview Questions: Get over 1,000 Interview Questions in an eBook for free when you join JobsAssist. Just click on the button below to join JobsAssist and you will immediately receive the Free eBook with thousands of Interview Questions in an ebook when you join.

New! Click here to Add your Code!


ASP Home | C Home | C++ Home | COBOL Home | Java Home | Pascal Home
Source Codes Home Page

 Advertisements  

Google Search

Google

Source Codes World.com is a part of Vyom Network.

Vyom Network : Web Hosting | Dedicated Server | Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Interview Questions | Jobs, Discussions | Placement Papers | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | Arabic, French, German | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Software Testing | Google Logo Maker | Freshers Jobs

Sitemap | Privacy Policy | Terms and Conditions | Important Websites
Copyright ©2003-2024 SourceCodesWorld.com, All Rights Reserved.
Page URL: http://www.sourcecodesworld.com/source/show.asp?ScriptID=710


Download Yahoo Messenger | Placement Papers | Free SMS | C Interview Questions | C++ Interview Questions | Quick2Host Review