Total members 11890 |It is currently Tue Apr 23, 2024 11:17 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka






* Project Name:   HTTP Server in Java
* Programmer:   Abhishek K. Dhote
* Type:   Network
* Technology:  Java
* IDE:   Any
* 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:
Code:
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:-
Code:
http://localhost.filename.html/

where filename.html is the name of the file you
want to request.


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


}


For sure you can port to any you want but you have to check your firewall.



_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time

updated.


_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 2 posts ] 

  Related Posts  to : HTTP Server in Java
 Using java in http connection     -  
 need java client/server code     -  
 Need Help with Server side scriping in Java     -  
 Java Chat Program with client & Server     -  
 Need Help for Java Chat - one server multiple clients..     -  
 Sql server or windows server question?     -  
 http proxy code     -  
 Send parameters using HTTP GET     -  
 Get value from HTTP POST VARS     -  
 How to open http connection using j2me     -  



Topic Tags

Java Networking, Java Projects







Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com