跳过导航链接
A B C D E F G H I L M N O P R S T U V W 

A

addCookieHeader(String) - 类 中的方法org.nanohttpd.protocols.http.response.Response
Adds a cookie header to the list.
addHeader(String, String) - 类 中的方法org.nanohttpd.protocols.http.response.Response
Adds given line to the header.
addHTTPInterceptor(IHandler<IHTTPSession, Response>) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
asyncRunner - 类 中的变量org.nanohttpd.protocols.http.NanoHTTPD
Pluggable strategy for asynchronously executing requests.

B

BUFSIZE - 类 中的静态变量org.nanohttpd.protocols.http.HTTPSession
 

C

ChunkedOutputStream - org.nanohttpd.protocols.http.response中的类
Output stream that will automatically send every write to the wrapped OutputStream according to chunked transfer: http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6.1
ChunkedOutputStream(OutputStream) - 类 的构造器org.nanohttpd.protocols.http.response.ChunkedOutputStream
 
clear() - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFileManager
 
clear() - 接口 中的方法org.nanohttpd.protocols.http.tempfiles.ITempFileManager
 
ClientHandler - org.nanohttpd.protocols.http中的类
The runnable that will be used for every new client connection.
ClientHandler(NanoHTTPD, InputStream, Socket) - 类 的构造器org.nanohttpd.protocols.http.ClientHandler
 
close() - 类 中的方法org.nanohttpd.protocols.http.ClientHandler
 
close() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
closeAll() - 类 中的方法org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
closeAll() - 接口 中的方法org.nanohttpd.protocols.http.threading.IAsyncRunner
 
closeAllConnections() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Forcibly closes all connections that are open.
closeConnection(boolean) - 类 中的方法org.nanohttpd.protocols.http.response.Response
Indicate to close the connection after the Response has been sent.
closed(ClientHandler) - 类 中的方法org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
closed(ClientHandler) - 接口 中的方法org.nanohttpd.protocols.http.threading.IAsyncRunner
 
CONTENT_DISPOSITION_ATTRIBUTE_PATTERN - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
CONTENT_DISPOSITION_ATTRIBUTE_REGEX - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
CONTENT_DISPOSITION_PATTERN - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
CONTENT_DISPOSITION_REGEX - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
CONTENT_TYPE_PATTERN - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
CONTENT_TYPE_REGEX - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
 
ContentType - org.nanohttpd.protocols.http.content中的类
 
ContentType(String) - 类 的构造器org.nanohttpd.protocols.http.content.ContentType
 
Cookie - org.nanohttpd.protocols.http.content中的类
A simple cookie representation.
Cookie(String, String) - 类 的构造器org.nanohttpd.protocols.http.content.Cookie
 
Cookie(String, String, int) - 类 的构造器org.nanohttpd.protocols.http.content.Cookie
 
Cookie(String, String, String) - 类 的构造器org.nanohttpd.protocols.http.content.Cookie
 
CookieHandler - org.nanohttpd.protocols.http.content中的类
Provides rudimentary support for cookies.
CookieHandler(Map<String, String>) - 类 的构造器org.nanohttpd.protocols.http.content.CookieHandler
 
create() - 类 中的方法org.nanohttpd.protocols.http.sockets.DefaultServerSocketFactory
 
create() - 类 中的方法org.nanohttpd.protocols.http.sockets.SecureServerSocketFactory
 
create() - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFileManagerFactory
 
create() - 接口 中的方法org.nanohttpd.util.IFactory
 
create() - 接口 中的方法org.nanohttpd.util.IFactoryThrowing
 
createClientHandler(Socket, InputStream) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
create a instance of the client handler, subclasses can return a subclass of the ClientHandler.
createServerRunnable(int) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Instantiate the server runnable, can be overwritten by subclasses to provide a subclass of the ServerRunnable.
createTempFile(String) - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFileManager
 
createTempFile(String) - 接口 中的方法org.nanohttpd.protocols.http.tempfiles.ITempFileManager
 
createThread(ClientHandler) - 类 中的方法org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 

D

decodeParameters(Map<String, String>) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Decode parameters from a URL, handing the case where a single parameter name might have been supplied several times, by return lists of values.
decodeParameters(String) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Decode parameters from a URL, handing the case where a single parameter name might have been supplied several times, by return lists of values.
decodePercent(String) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Decode percent encoded String values.
DefaultAsyncRunner - org.nanohttpd.protocols.http.threading中的类
Default threading strategy for NanoHTTPD.
DefaultAsyncRunner() - 类 的构造器org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
DefaultServerSocketFactory - org.nanohttpd.protocols.http.sockets中的类
Creates a normal ServerSocket for TCP connections
DefaultServerSocketFactory() - 类 的构造器org.nanohttpd.protocols.http.sockets.DefaultServerSocketFactory
 
DefaultTempFile - org.nanohttpd.protocols.http.tempfiles中的类
Default strategy for creating and cleaning up temporary files.
DefaultTempFile(File) - 类 的构造器org.nanohttpd.protocols.http.tempfiles.DefaultTempFile
 
DefaultTempFileManager - org.nanohttpd.protocols.http.tempfiles中的类
Default strategy for creating and cleaning up temporary files.
DefaultTempFileManager() - 类 的构造器org.nanohttpd.protocols.http.tempfiles.DefaultTempFileManager
 
DefaultTempFileManagerFactory - org.nanohttpd.protocols.http.tempfiles中的类
Default strategy for creating and cleaning up temporary files.
DefaultTempFileManagerFactory() - 类 的构造器org.nanohttpd.protocols.http.tempfiles.DefaultTempFileManagerFactory
 
delete(String) - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
Set a cookie with an expiration date from a month ago, effectively deleting it on the client side.
delete() - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFile
 
delete() - 接口 中的方法org.nanohttpd.protocols.http.tempfiles.ITempFile
 

E

exec(ClientHandler) - 类 中的方法org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
exec(ClientHandler) - 接口 中的方法org.nanohttpd.protocols.http.threading.IAsyncRunner
 
execute() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
execute() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
executeInstance(NanoHTTPD) - 类 中的静态方法org.nanohttpd.util.ServerRunner
 

F

finish() - 类 中的方法org.nanohttpd.protocols.http.response.ChunkedOutputStream
 

G

getBindException() - 类 中的方法org.nanohttpd.protocols.http.ServerRunnable
 
getBodySize() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
Deduce body length in bytes.
getBoundary() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 
getContentType() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 
getContentTypeHeader() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 
getCookieHeaders() - 类 中的方法org.nanohttpd.protocols.http.response.Response
Should not be called manually.
getCookies() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getCookies() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getData() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
getDescription() - 接口 中的方法org.nanohttpd.protocols.http.response.IStatus
 
getDescription() - 枚举 中的方法org.nanohttpd.protocols.http.response.Status
 
getEncoding() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 
getHeader(String) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
getHeaders() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getHeaders() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getHostname() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
getHTTPHeader() - 类 中的方法org.nanohttpd.protocols.http.content.Cookie
 
getHTTPTime(int) - 类 中的静态方法org.nanohttpd.protocols.http.content.Cookie
 
getInputStream() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getInputStream() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getListeningPort() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
getMethod() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getMethod() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getMimeType() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
getMimeTypeForFile(String) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Get MIME type from file name extension, if possible
getMyServerSocket() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
getName() - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFile
 
getName() - 接口 中的方法org.nanohttpd.protocols.http.tempfiles.ITempFile
 
getParameters() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getParameters() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getParms() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
已过时。
getParms() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
已过时。
getQueryParameterString() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getQueryParameterString() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 
getRemoteIpAddress() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getRemoteIpAddress() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
Get the remote ip address of the requester.
getRequestMethod() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
getRequestStatus() - 接口 中的方法org.nanohttpd.protocols.http.response.IStatus
 
getRequestStatus() - 枚举 中的方法org.nanohttpd.protocols.http.response.Status
 
getRunning() - 类 中的方法org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
getServerSocketFactory() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
getStatus() - 异常错误 中的方法org.nanohttpd.protocols.http.NanoHTTPD.ResponseException
 
getStatus() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
getTempFileManagerFactory() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
getUri() - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
getUri() - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
 

H

handle(IHTTPSession) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
This is the "master" method that delegates requests to handlers and makes sure there is a response to every request.
handle(I) - 接口 中的方法org.nanohttpd.util.IHandler
 
hasBinded() - 类 中的方法org.nanohttpd.protocols.http.ServerRunnable
 
hostname - 类 中的变量org.nanohttpd.protocols.http.NanoHTTPD
 
HTTPSession - org.nanohttpd.protocols.http中的类
 
HTTPSession(NanoHTTPD, ITempFileManager, InputStream, OutputStream) - 类 的构造器org.nanohttpd.protocols.http.HTTPSession
 
HTTPSession(NanoHTTPD, ITempFileManager, InputStream, OutputStream, InetAddress) - 类 的构造器org.nanohttpd.protocols.http.HTTPSession
 

I

IAsyncRunner - org.nanohttpd.protocols.http.threading中的接口
Pluggable strategy for asynchronously executing requests.
IFactory<T> - org.nanohttpd.util中的接口
Represents a simple factory
IFactoryThrowing<T,E extends Throwable> - org.nanohttpd.util中的接口
Represents a factory that can throw an exception instead of actually creating an object
IHandler<I,O> - org.nanohttpd.util中的接口
Defines a generic handler that returns an object of type O when given an object of type I.
IHTTPSession - org.nanohttpd.protocols.http中的接口
Handles one session, i.e. parses the HTTP request and returns the response.
interceptors - 类 中的变量org.nanohttpd.protocols.http.NanoHTTPD
 
isAlive() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
isCloseConnection() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
isMultipart() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 
IStatus - org.nanohttpd.protocols.http.response中的接口
 
ITempFile - org.nanohttpd.protocols.http.tempfiles中的接口
A temp file.
ITempFileManager - org.nanohttpd.protocols.http.tempfiles中的接口
Temp file manager.
iterator() - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
 

L

LOG - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
logger to log to.
lookup(String) - 枚举 中的静态方法org.nanohttpd.protocols.http.request.Method
 
lookup(int) - 枚举 中的静态方法org.nanohttpd.protocols.http.response.Status
 

M

makeSecure(SSLServerSocketFactory, String[]) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Call before start() to serve over HTTPS instead of HTTP
makeSSLSocketFactory(KeyStore, KeyManager[]) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Creates an SSLSocketFactory for HTTPS.
makeSSLSocketFactory(KeyStore, KeyManagerFactory) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Creates an SSLSocketFactory for HTTPS.
makeSSLSocketFactory(String, char[]) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
Creates an SSLSocketFactory for HTTPS.
MAX_HEADER_SIZE - 类 中的静态变量org.nanohttpd.protocols.http.HTTPSession
 
Method - org.nanohttpd.protocols.http.request中的枚举
HTTP Request methods, with the ability to decode a String back to its enum value.
MIME_HTML - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
Common MIME type for dynamic content: html
MIME_PLAINTEXT - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
Common MIME type for dynamic content: plain text
MIME_TYPES - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
Hashtable mapping (String)FILENAME_EXTENSION -> (String)MIME_TYPE
mimeTypes() - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
 
myPort - 类 中的变量org.nanohttpd.protocols.http.NanoHTTPD
 

N

NanoHTTPD - org.nanohttpd.protocols.http中的类
A simple, tiny, nicely embeddable HTTP server in Java

NanoHTTPD Copyright (c) 2012-2013 by Paul S.

NanoHTTPD(int) - 类 的构造器org.nanohttpd.protocols.http.NanoHTTPD
Constructs an HTTP server on given port.
NanoHTTPD(String, int) - 类 的构造器org.nanohttpd.protocols.http.NanoHTTPD
Constructs an HTTP server on given hostname and port.
NanoHTTPD.ResponseException - org.nanohttpd.protocols.http中的异常错误
 
newChunkedResponse(IStatus, String, InputStream) - 类 中的静态方法org.nanohttpd.protocols.http.response.Response
Create a response with unknown length (using HTTP 1.1 chunking).
newFixedLengthResponse(IStatus, String, byte[]) - 类 中的静态方法org.nanohttpd.protocols.http.response.Response
 
newFixedLengthResponse(IStatus, String, InputStream, long) - 类 中的静态方法org.nanohttpd.protocols.http.response.Response
Create a response with known length.
newFixedLengthResponse(IStatus, String, String) - 类 中的静态方法org.nanohttpd.protocols.http.response.Response
Create a text response with known length.
newFixedLengthResponse(String) - 类 中的静态方法org.nanohttpd.protocols.http.response.Response
Create a text response with known length.

O

open() - 类 中的方法org.nanohttpd.protocols.http.tempfiles.DefaultTempFile
 
open() - 接口 中的方法org.nanohttpd.protocols.http.tempfiles.ITempFile
 
org.nanohttpd.protocols.http - 程序包 org.nanohttpd.protocols.http
 
org.nanohttpd.protocols.http.content - 程序包 org.nanohttpd.protocols.http.content
 
org.nanohttpd.protocols.http.request - 程序包 org.nanohttpd.protocols.http.request
 
org.nanohttpd.protocols.http.response - 程序包 org.nanohttpd.protocols.http.response
 
org.nanohttpd.protocols.http.sockets - 程序包 org.nanohttpd.protocols.http.sockets
 
org.nanohttpd.protocols.http.tempfiles - 程序包 org.nanohttpd.protocols.http.tempfiles
 
org.nanohttpd.protocols.http.threading - 程序包 org.nanohttpd.protocols.http.threading
 
org.nanohttpd.util - 程序包 org.nanohttpd.util
 

P

parseBody(Map<String, String>) - 类 中的方法org.nanohttpd.protocols.http.HTTPSession
 
parseBody(Map<String, String>) - 接口 中的方法org.nanohttpd.protocols.http.IHTTPSession
Adds the files in the request body to the files map.
POST_DATA - 类 中的静态变量org.nanohttpd.protocols.http.HTTPSession
 
printHeader(PrintWriter, String, String) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 

R

read(String) - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
Read a cookie from the HTTP Headers.
requestCount - 类 中的变量org.nanohttpd.protocols.http.threading.DefaultAsyncRunner
 
Response - org.nanohttpd.protocols.http.response中的类
HTTP response.
Response(IStatus, String, InputStream, long) - 类 的构造器org.nanohttpd.protocols.http.response.Response
Creates a fixed length response if totalBytes>=0, otherwise chunked.
ResponseException(Status, String) - 异常错误 的构造器org.nanohttpd.protocols.http.NanoHTTPD.ResponseException
 
ResponseException(Status, String, Exception) - 异常错误 的构造器org.nanohttpd.protocols.http.NanoHTTPD.ResponseException
 
run() - 类 中的方法org.nanohttpd.protocols.http.ClientHandler
 
run() - 类 中的方法org.nanohttpd.protocols.http.ServerRunnable
 
run(Class<T>) - 类 中的静态方法org.nanohttpd.util.ServerRunner
 

S

safeClose(Object) - 类 中的静态方法org.nanohttpd.protocols.http.NanoHTTPD
 
SecureServerSocketFactory - org.nanohttpd.protocols.http.sockets中的类
Creates a new SSLServerSocket
SecureServerSocketFactory(SSLServerSocketFactory, String[]) - 类 的构造器org.nanohttpd.protocols.http.sockets.SecureServerSocketFactory
 
send(OutputStream) - 类 中的方法org.nanohttpd.protocols.http.response.Response
Sends given response to the socket.
sendContentLengthHeaderIfNotAlreadyPresent(PrintWriter, long) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
serve(IHTTPSession) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
已过时。
ServerRunnable - org.nanohttpd.protocols.http中的类
The runnable that will be used for the main listening thread.
ServerRunnable(NanoHTTPD, int) - 类 的构造器org.nanohttpd.protocols.http.ServerRunnable
 
ServerRunner - org.nanohttpd.util中的类
 
ServerRunner() - 类 的构造器org.nanohttpd.util.ServerRunner
 
set(Cookie) - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
 
set(String, String, int) - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
Sets a cookie.
setAsyncRunner(IAsyncRunner) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Pluggable strategy for asynchronously executing requests.
setChunkedTransfer(boolean) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setData(InputStream) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setHTTPHandler(IHandler<IHTTPSession, Response>) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
setKeepAlive(boolean) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setMimeType(String) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setRequestMethod(Method) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setServerSocketFactory(IFactoryThrowing<ServerSocket, IOException>) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
setStatus(IStatus) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
setTempFileManagerFactory(IFactory<ITempFileManager>) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Pluggable strategy for creating and cleaning up temporary files.
setUseGzip(boolean) - 类 中的方法org.nanohttpd.protocols.http.response.Response
 
SOCKET_READ_TIMEOUT - 类 中的静态变量org.nanohttpd.protocols.http.NanoHTTPD
Maximum time to wait on Socket.getInputStream().read() (in milliseconds) This is required as the Keep-Alive HTTP connections would otherwise block the socket reading thread forever (or as long the browser is open).
start() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Start the server.
start(int) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Starts the server (in setDaemon(true) mode).
start(int, boolean) - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Start the server.
Status - org.nanohttpd.protocols.http.response中的枚举
Some HTTP response status codes
stop() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
Stop the server.

T

tryUTF8() - 类 中的方法org.nanohttpd.protocols.http.content.ContentType
 

U

unloadQueue(Response) - 类 中的方法org.nanohttpd.protocols.http.content.CookieHandler
Internally used by the webserver to add all queued cookies into the Response's HTTP Headers.
useGzipWhenAccepted() - 类 中的方法org.nanohttpd.protocols.http.response.Response
 

V

valueOf(String) - 枚举 中的静态方法org.nanohttpd.protocols.http.request.Method
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法org.nanohttpd.protocols.http.response.Status
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.nanohttpd.protocols.http.request.Method
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法org.nanohttpd.protocols.http.response.Status
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

W

wasStarted() - 类 中的方法org.nanohttpd.protocols.http.NanoHTTPD
 
write(int) - 类 中的方法org.nanohttpd.protocols.http.response.ChunkedOutputStream
 
write(byte[]) - 类 中的方法org.nanohttpd.protocols.http.response.ChunkedOutputStream
 
write(byte[], int, int) - 类 中的方法org.nanohttpd.protocols.http.response.ChunkedOutputStream
 
A B C D E F G H I L M N O P R S T U V W 
跳过导航链接

Copyright © 2012–2020 nanohttpd. All rights reserved.