public class httpserver extends NanoHTTPD {
public static final int DEFAULT_SERVER_PORT = 8899;//为8899
public httpserver() throws IOException {
super(DEFAULT_SERVER_PORT);
start(NanoHTTPD.SOCKET_READ_TIMEOUT, true);
Log.e(TAG,"HTTPP START SUCCESS");
}
public static void main(String[] args) {
try {
new httpserver();
} catch (IOException ioe) {
System.err.println("Couldn't start server:
" + ioe);
}
}
@Override
搭建个NanoHTTPD 通过客户端 传递 url body cookie 参数获取返回结果的服务,这个搭建的有问题吗?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…