Java kod (yardım)?

immortals
17-01-2011, 19:10   |  #1  
OP Yıllanmış Üye
Teşekkür Sayısı: 0
146 mesaj
Kayıt Tarihi:Kayıt: Ara 2010

MERHABA;
arkadaşlar eilmde bu programın ne işe yaradıgını bilen varmı yada herneyse artık staj dosyama yazıcamda??
 
import java.io.*;
import java.net.*;
import java.util.StringTokenizer;


public class HttpServer {
   public static final int HTTP_PORT = 8080;

   public ServerSocket createSocket() throws Exception {
      return new ServerSocket(HTTP_PORT);
   }
 
 
 public void run() {
      ServerSocket listen;
      try {
         listen = createSocket();
         while(true) {
            Socket client = listen.accept();
            ConnectionHandler handler = new
              ConnectionHandler(client);
         }
      } catch(Exception e) {
         System.out.println("Exception: "+e.getMessage());
      }
   }


   public static void main(String argv[]) throws
     Exception {
      HttpServer httpserver = new HttpServer();
      httpserver.run();
   }
}


class ConnectionHandler extends Thread {
   Socket client;
   BufferedReader is;
   DataOutputStream os;
   
   public ConnectionHandler(Socket s) { // constructor
      client = s;
      try {
         is = new BufferedReader(new InputStreamReader
           (client.getInputStream()));
         os = new DataOutputStream(client.getOutputStream());
      } catch (IOException e) {
         System.out.println("Exception: "+e.getMessage());
      }
      this.start();

   }

   public void run() {
      try {
         String request = is.readLine();
         System.out.println( "Request: "+request );
         StringTokenizer st = new StringTokenizer( request );
            if ( (st.countTokens() >= 2) &&
              st.nextToken().equals("GET") ) {
               if ( (request =
                 st.nextToken()).startsWith("/") )
                  request = request.substring( 1 );
               if ( request.equals("") )
                  request = request + "index.html";
               File f = new File(request);
               sendDocument(os, f);
            } else {
               os.writeBytes( "400 Bad Request" );
            }
            client.close();
      } catch (Exception e) {
         System.out.println("Exception: " +
           e.getMessage());
      }
   }

   public static void sendDocument(DataOutputStream out,
     File f) throws Exception {
       try {
          DataInputStream in = new
            DataInputStream(new FileInputStream(f));
          int len = (int) f.length();
          byte[] buf = new byte[len];
          in.readFully(buf);
          in.close();
          out.writeBytes("HTTP/1.0 200 OK\r\n");
          out.writeBytes("Content-Length: " +
            f.length() +"\r\n");
          out.writeBytes("Content-Type: text/html\r\n\r\n");
          out.write(buf);
          out.flush();
       } catch (Exception e) {
          out.writeBytes("\r\n\r\n");
          out.writeBytes("HTTP/1.0 400 " + e.getMessage() + "\r\n");
          out.writeBytes("Content-Type: text/html\r\n\r\n");
          out.writeBytes("");
          out.flush();
       } finally {
          out.close();
       }

KENAN_35
18-01-2011, 08:19   |  #2  
Yıllanmış Üye
Teşekkür Sayısı: 2
990 mesaj
Kayıt Tarihi:Kayıt: Ağu 2010

java kod nette java uygulamarını açmaya yarıyo