*/
public class SimpleHttpServer {
public static void main(String[] args) throws IOException {
new HttpServer(7262, SimpleHttpSession.class);
System.out.println("SimpleHttpServer listening on http://localhost:7262");
System.out.println("From a browser, try http://localhost:7262/hello\n or http://localhost:7262/buy?code=200&desc=Rolls%20Royce");
}