We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The WebServer sample is an example of the simplest possible web server that you can imagine.
It only supports HTTP GET requests.
It listens to port 7777.
Any files under the current directory can be returned.
It is a good example of using Thread and Runnable.
Thread
Runnable
public class RequestReader implements Runnable { @Override public void run() { } }
There was an error while loading. Please reload this page.