我想把一堆stacktraces(stacktraceelement[])转换成树状结构。i、 我有3个堆栈跟踪(这里简化为字符串),比如
stacktraceelement[]one=[“first.package.class.method()”,“first.package.class.othermethod()”,“second.package.class.method()”];
stacktraceelement[]two=[“first.package.class.method()”,“first.package.class.othermethod()”,“third.package.class.method()”];
stacktraceelement[]three=[“first.package.class.method()”,“first.package.class.othermethod()”,“fourth.package.class.method()”];
结果应该将这些数组跨到一个不重复的树中,看起来有点像这样:
first.package.class.method()
first.package.class.othermethod()
second.package.class.method()
third.package.class.method()
第四个.package.class.method()
最有效的方法是什么?有图书馆已经可以这样做了吗?
提前谢谢!
暂无答案!
目前还没有任何答案,快来回答吧!