所有这些都在文档中进行了说明。
http://docs.oracle.com/javase/7/docs/technotes/guides/jni/spec/types.html
Type Signature Java TypeZ booleanB byteC charS shortI intJ longF floatD doubleL fully-qualified-class ; fully-qualified-class[ typetype[]( arg-types ) ret-type method type
您
(II)I的方法采用两个整数作为参数并返回一个int。例如
int m(int i, int j)。
一种方法
void print(String message)是
(Ljava/lang/String;)



