简体   繁体   中英

JAva Decompiler (JAD) - Do not output a class name with slashes

When I'm using the GUI edition, it's shown as

Intent localIntent = new Intent(this, Someclass.class);

But in console mode with parameters

jad -o -r -b -f -sjava Someclass.class

It's outputed as

Intent intent = new Intent(this, com/example/Someclass);

Is there a way to output it as in gui mode? I don't see any appropriate parameter in documentation http://www.javadecompilers.com/jad

It seems like you are decompiling Android application with out-of-date, stale, not-supported JAD. Try a specialized decompiler, ie JADX.

Download it here: https://sourceforge.net/projects/jadx/files/ or use online service: http://www.javadecompilers.com/apk

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM