!747 class MyHTTPD extends NanoHTTPD { public MyHTTPD(int port) throws IOException { super(port); } public Response serve(String uri, Method method, Map<S, S> header, Map<S, S> parms, Map<S, S> files) { System.out.println( method + " '222" + uri + "' " ); String msg = "<html><body><h1>Caramel Text Server</h1>\n"; if (parms.get("username") == null) msg += "<form action='?' method='get'>\n" + " <p>Your name: <input type='text' name='username'></p>\n" + "</form>\n"; else msg += "<p>Hello, " + parms.get("username") + "!</p>"; msg += "</body></html>\n"; return newFixedLengthResponse(msg); } } m { static int port = 8888; static MyHTTPD server; p { server = new MyHTTPD(port); server.start(); } } !include #1000433 // class NanoHTTPD
Began life as a copy of #1000436
download show line numbers debug dex old transpilations
Travelled to 16 computer(s): ajlfxifxfcul, aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, tzxuzeklshpk, vouqrxazstgt, xinetxnxrdbb
No comments. add comment
Snippet ID: | #1007961 |
Snippet name: | Android/desktop: Web server test using NanoHTTPD on port 8888, shortened |
Eternal ID of this version: | #1007961/3 |
Text MD5: | a7a29af0fc492a0a2b07a87680ffd7da |
Author: | caramel |
Category: | javax android |
Type: | JavaX source code |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-04-17 21:29:02 |
Source code size: | 885 bytes / 34 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 540 / 574 |
Version history: | 2 change(s) |
Referenced in: | [show references] |