httpServer.createContext("/abc", SimpleFileServer.createFileHandler(Path.of("D:\\my-abc")));
httpServer.createContext("/def", SimpleFileServer.createFileHandler(Path.of("D:\\test\\hello\\def")));
對應的訪問路徑分別是:
http://localhost:8080/abc
http://localhost:8080/def