Is there a way to compute a Java class\'s method\'s signature? A signature like ([Ljava/lang/String;)V represents a function that takes a
([Ljava/lang/String;)V
Just run javap -s in the folder containing the .class files . It will tell you with 100% accuracy. No need to guess these things.
javap -s
.class