Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 参数获取返回结果的服务,这个搭建的有问题吗?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...