1

文字列表現「com.company.project.service.service1Impl.method()」「com.company.project.service.service2Impl.method()」として保存されたメソッドのリストがあります

....

完全なクラス/パッケージ署名付き

ツリー構造を実装して、パッケージ/クラス/メソッドをEclipseパッケージエクスプローラーと同様の方法で表示する最も適切な方法は何ですか?

例えば:

com
  mycompany
    myproject1
       service
         service1Impl
             method1
             method2
         service2impl
       controller
          controllerImpl
             method1
             method2
          controllerImpl2
    myproject2

ノート:

これが違いを生むかどうかはわかりませんが、このデータ構造をjsonに変換して、UIのjqueryツリーに表示することを計画しています.

前もって感謝します。

4

1 に答える 1

2

次の引数を持つ再帰メソッドで解決します。

  • 文字列を含む配列
  • 現在のプレフィックス
  • 現在の深さ
  • 最大深度 (したがって、一度だけ計算する必要があります)

それを説明する最良の方法は、実際のコードを使用することだと思います。

import java.util.ArrayList;

public class Test {

    public static void main(String[] args) {
        Test t = new Test();
        String s1 = "com.company.project.service.service1Impl.method()";
        String s2 = "com.company.project.service.service2Impl.method()";
        String s3 = "com.company.test.service.service1Impl.method()";
        String s4 = "com.company.test.service.service2Impl.method()";
        String[] strings = { s1, s2, s3, s4 };
        t.print(strings);
    }

    public void print(String[] strings) {
        //calculate max depth
        int maxDepth = 0;
        for (String string : strings) {
            int currentDepth = string.split("\\.").length;
            if (currentDepth > maxDepth) {
                maxDepth = currentDepth;
            }
        }
        this.print(strings, "", 0, maxDepth);
    }

    public void print(String[] strings, String start, int currentDepth,
            int maxDepth) {
        if (currentDepth == maxDepth - 1) {
            return;
        }
        String currentPrint = null;
        ArrayList<String> candidates = new ArrayList<String>();

        // add candidates
        for (String s : strings) {
            if (!s.startsWith(start)) {
                continue;
            }
            String[] split = s.split("\\.");
            if (split.length - 1 < currentDepth) {
                continue;
            }
            if (currentPrint == null) {
                currentPrint = split[currentDepth];
                candidates.add(currentPrint);
                continue;
            }
            if (!currentPrint.equals(split[currentDepth])) {
                currentPrint = split[currentDepth];
                candidates.add(currentPrint);
            }
        }

        // print depth+1 with candidates
        currentDepth++;
        for (String c : candidates) {
            // print current level
            this.printSpaces(currentDepth - 1);
            System.out.println(c);
            // we have to go deeper
            this.print(strings, start + c + ".", currentDepth, maxDepth);
        }
    }

    // print spaces
    public void printSpaces(int max) {
        for (int i = 0; i < max; i++) {
            System.out.print("  ");
        }
    }
}

コードについて質問がある場合は、私に尋ねてください。

編集:これはもちろん、メソッドのリストがアルファベット順にソートされている場合にのみ機能します。そうでない場合は、並べ替えが最初のステップになります。

于 2013-05-26T20:15:34.457 に答える