代码搜索:Wrox
找到约 2,023 项符合「Wrox」的源代码
代码结果 2,023
www.eeworm.com/read/184988/5242950
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/184988/5242951
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/184988/5242953
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/184988/5242958
java httprequest.java
// HTTPRequest.java
package com.wrox.simplehttpserver;
import java.net.*;
import java.io.*;
import java.util.*;
class HTTPRequest {
private Socket clientconnection;
public HTTPRequest
www.eeworm.com/read/184988/5242959
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/184988/5242960
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/184988/5242968
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/184988/5242969
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/184988/5242972
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/184988/5242973
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