代码搜索:httpServer
找到约 591 项符合「httpServer」的源代码
代码结果 591
www.eeworm.com/read/184988/5242954
java httpresponse.java
// HTTPResponse.java
package com.wrox.httpserver;
import java.util.*;
import java.io.*;
/**
* Encapsulates the response headers of an HTTP request.
*/
class HTTPResponse extends HTTPCon
www.eeworm.com/read/184988/5242962
java httpinformation.java
// HTTPInformation.java
package com.wrox.httpserver;
import java.io.*;
import java.util.*;
/**
* This class encapsulates HTTP header information for a HTTP request
* and sets up the envi
www.eeworm.com/read/184988/5242979
java httpresponse.java
// HTTPResponse.java
package com.wrox.httpserver;
import java.util.*;
import java.io.*;
/**
* Encapsulates the response headers of an HTTP request.
*/
class HTTPResponse extends HTTPCon
www.eeworm.com/read/306705/3734917
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by HttpServer.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
www.eeworm.com/read/277926/4148949
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by HttpServer.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
www.eeworm.com/read/232891/4695881
java httplog.java
// HTTPLog.java
package com.wrox.httpserver;
import java.io.*;
import java.util.*;
/**
* This class logs both access and error messages.
*/
class HTTPLog extends HTTPConstants {
//
www.eeworm.com/read/232891/4695882
java httpgethandler.java
// HTTPGetHandler.java
package com.wrox.httpserver;
import java.io.*;
import java.net.*;
/**
* This class implements the GET method. The GET method returns the
* requested entity body in
www.eeworm.com/read/232891/4695890
java httpconfig.java
// HTTPConfig.java
package com.wrox.httpserver;
import java.util.*;
import java.io.*;
import java.net.*;
/**
* This class encapsulates the HTTP configuration read in from
* the configur
www.eeworm.com/read/232891/4695891
java mimeconverter.java
// MimeConverter.java
package com.wrox.httpserver;
import java.util.*;
import java.io.*;
/**
* This class reads in the mime.properties file and returns the MIME type
* based on the file
www.eeworm.com/read/232891/4695894
java httphandler.java
// HTTPHandler.java
package com.wrox.httpserver;
import java.io.*;
import java.net.*;
/**
* Encapsulates an HTTP method handler such as GET, HEAD or POST.
*/
abstract class HTTPHandler