-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathServer.java
More file actions
62 lines (50 loc) · 1.77 KB
/
Server.java
File metadata and controls
62 lines (50 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package io.vertx.example.web.upload;
import io.vertx.core.Future;
import io.vertx.core.VerticleBase;
import io.vertx.ext.web.FileUpload;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.BodyHandler;
import io.vertx.launcher.application.VertxApplication;
/*
* @author <a href="http://tfox.org">Tim Fox</a>
*/
public class Server extends VerticleBase {
public static void main(String[] args) {
VertxApplication.main(new String[]{Server.class.getName()});
}
@Override
public Future<?> start() throws Exception {
Router router = Router.router(vertx);
// Enable multipart form data parsing
router.route().handler(BodyHandler.create().setUploadsDirectory("uploads"));
router.route("/").handler(routingContext -> {
routingContext.response().putHeader("content-type", "text/html").end(
"<form action=\"/form\" method=\"post\" enctype=\"multipart/form-data\">\n" +
" <div>\n" +
" <label for=\"name\">Select a file:</label>\n" +
" <input type=\"file\" name=\"file\" />\n" +
" </div>\n" +
" <div class=\"button\">\n" +
" <button type=\"submit\">Send</button>\n" +
" </div>" +
"</form>"
);
});
// handle the form
router.post("/form").handler(ctx -> {
ctx.response().putHeader("Content-Type", "text/plain");
ctx.response().setChunked(true);
for (FileUpload f : ctx.fileUploads()) {
ctx.response().write("Filename: " + f.fileName());
ctx.response().write("\n");
ctx.response().write("Size: " + f.size());
ctx.response().write("\n");
}
ctx.response().end();
});
return vertx
.createHttpServer()
.requestHandler(router)
.listen(8080);
}
}