java - Get JNI Signature for methods of nested classes -


Let's say that I have a class called scope in which nested class is variable, how exactly do i javap -s to get JNI signatures of classes inside? I have tried to do

javap-classpath & lt; Classpath & gt; -s scope $ variable

, but it does not seem to work, it seems that I get the same information as I typed "scope" instead of "scope $ variable" is.

Thank you for any help

If you have < Code> javap , then $ will be interpreted by the shell and not by javap . So this music will be a simple solution to escape:

  javap-classpath & lt; Classpath & gt; -s 'Scope $ Variable'   

Exclamation of the shell (I believe in a child) will try to replace it with the contents of the $ Variable part Environment variable variable I think there is no such variable and no further (as in "empty string") has been replaced. Therefore, javap looks only

  javap-classpath & lt; Classpath & gt; If you are running commands from Windows, then this is not a problem, because the magical character will be % .    BTW: I do not know why JNI is involved here.   

Comments

Popular posts from this blog

Python SQLAlchemy:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema' -

java - How not to audit a join table and related entities using Hibernate Envers? -

mongodb - CakePHP paginator ignoring order, but only for certain values -