is there any method for WALA to slice several jars

30 views Asked by At

i am a green hand for WALA. i am trying to slice a jar for hdfs, but it is corelated with other parts of hadoop like hadoop commom. so i wonder if there is any method to slice several jars or slice one and the slice statement including the calls from other jars.

if you have any ideas about it thank you so much!

1

There are 1 answers

0
zhouyn On

I got it. We can solve this problem through adding several paths to the jar path which we choose to slice, like:

String path = "./test.jar;./test01.jar";

Quite simple.