测试2

Posted horvey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测试2相关的知识,希望对你有一定的参考价值。

 1 import java.io.File;
 2 
 3 public class ListFile {
 4     private File root;
 5 
 6     public ListFile(String path) {
 7         this.root = new File(path);
 8     }
 9 
10     public void list() {
11         this.list(this.root, 0);
12     }
13 
14     private void list(File file, int level) {
15         for (File f : file.listFiles()) {
16             System.out.println(this.repeatStr(level) + f.getName());
17             if (f.isDirectory()) {
18                 this.list(f, level + 1);
19             }
20         }
21     }
22 
23     private String repeatStr(int level) {
24         StringBuffer buffer = new StringBuffer();
25         for (int i = 0; i < level; i++) {
26             buffer.append("-");
27         }
28         return buffer.toString();
29     }
30 
31     public static void main(String[] args) {
32         ListFile file = new ListFile("./");
33         file.list();
34     }
35 }
123 321
456 654

以上是关于测试2的主要内容,如果未能解决你的问题,请参考以下文章

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming

这个代码片段有啥作用?

CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

测试片段post 2