这是一个非常简单的实现,它会让您知道从哪里开始。:-)
import java.io.PrintStream;
import java.util.Collections;
import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;
import java.util.regex.Pattern;
public class PathWalker {
public static class Node {
private final Map<String, Node> children = new TreeMap<>();
public Node getChild(String name) {
if (children.containsKey(name))
return children.get(name);
Node result = new Node();
children.put(name, result);
return result;
}
public Map<String, Node> getChildren() {
return Collections.unmodifiableMap(children);
}
}
private final Node root = new Node();
private static final Pattern PATH_SEPARATOR = Pattern.compile("\\\\");
public void addPath(String path) {
String[] names = PATH_SEPARATOR.split(path);
Node node = root;
for (String name : names)
node = node.getChild(name);
}
private static void printHtml(Node node, PrintStream out) {
Map<String, Node> children = node.getChildren();
if (children.isEmpty())
return;
out.println("<ul>");
for (Map.Entry<String, Node> child : children.entrySet()) {
out.print("<li>");
out.print(child.getKey());
printHtml(child.getValue(), out);
out.println("</li>");
}
out.println("</ul>");
}
public void printHtml(PrintStream out) {
printHtml(root, out);
}
public static void main(String[] args) {
PathWalker self = new PathWalker();
Scanner scanner = new Scanner(System.in);
while (scanner.hasNextLine())
self.addPath(scanner.nextLine());
self.printHtml(System.out);
}
}
最初,我考虑为目录和常规文件创建单独的类,但我觉得在这种情况下,由于您要做的只是打印名称,因此使用统一的节点类可以使代码更易于使用,尤其是因为您可以避免实现访问者模式。
输出没有以任何特别好的方式格式化。因此,如果您愿意,您可以调整代码;或者,如果你想要更好看的东西,你可以通过 HTML Tidy 运行输出。
我选择使用TreeMap
,所以目录条目是按字典顺序排列的。如果您想改用插入顺序,只需更改为使用LinkedHashMap
.