代码搜索:Wrox

找到约 2,023 项符合「Wrox」的源代码

代码结果 2,023
www.eeworm.com/read/232891/4695905

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/4695906

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/4695914

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/4695915

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/4695918

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
www.eeworm.com/read/232891/4695919

java httpobject.java

// HTTPObject.java package com.wrox.httpserver; import java.io.*; import java.util.*; /** * Abstract base class for resource objects that are requested through a URI. */ abstract class
www.eeworm.com/read/232891/4695920

java httpposthandler.java

// HTTPPostHandler.java package com.wrox.httpserver; import java.net.*; import java.io.*; /** * This class implements the POST method. The POST method sends the entity body * that is enc
www.eeworm.com/read/232891/4695922

java httpheadhandler.java

// HTTPHeadHandler.java package com.wrox.httpserver; import java.io.*; import java.net.*; /** * This class implements the HEAD method. The HEAD method is identical to * GET except that t
www.eeworm.com/read/232891/4695924

java httpstatus.java

// HTTPStatus.java package com.wrox.httpserver; import java.util.*; /** * HTTP/1.0 status codes and descriptions according to RFC 1945. */ class HTTPStatus { // Informational 1xx
www.eeworm.com/read/232891/4695926

nonsecure httpserver.nonsecure

package com.wrox.httpserver; import java.io.*; import java.net.*; import java.util.*; /** * The HTTPServer main application. It starts the server as a user * thread and presents a console