COMMUNITY
°øÁö»çÇ×ÅäÅ©¹Ú½º°¶·¯¸®Áñ°Üã±âÀÚ·á½Ç±¤°í
ÀÚ·á½Ç ^^
ÀÚ·á½Ç
Community ÀÚ·á½Ç ÀÔ´Ï´Ù
¸¹Àº ÀÚ·á °øÀ¯ÇØ ÁÖ¼¼¿ä ^^
java decompile ÇÏÀ§ µð·ºÅ丮±îÁö ÇѲ¨¹ø¿¡ µðÄÄÆÈ Çϱâ
GoodBug http://www.jakartaproject.com
À̹ÌÁö ½½¶óÀÌ´õ º¸±â

 

jad -o -r -sjava -dµðÄÄÆÄÀϵÉŸ°Ùµð·ºÅ丮 Ŭ·¡½ºÆÄÀϼҽºµð·ºÅ丮/**/*.class

¿¹) jad -o -r -sjava -src unicorn/**/*.class

 

 

This is README file for Jad - the fast Java Decompiler.
Jad home page: http://www.kpdus.com/jad.html
Copyright 2001 Pavel Kouznetsov (jad@kpdus.com).

0. Please read the disclaimer on the Jad home page.

1. Installation.

Unzip jad.zip file into any appropriate directory on your hard drive.
This will create two files:

    - an executable file named 'jad.exe' (Windows *)
      or 'jad' (*n*x)

    - this README file

No other setup is required.

2. How to use Jad

To decompile a single JAVA class file 'example1.class'
type the following:

     jad example1.class

This command creates file 'example1.jad' in the current directory.
If such file already exists Jad asks whether you want to overwrite it or not.
Option -o permits overwriting without a confirmation.

You can omit .class extension and/or use wildcards in the names of
input files.

Option -s <ext> allows to change output file extension:

     jad -sjava example1.class

This command creates file 'example1.java'. Be careful when using
options -o and -sjava together, because Jad can accidentally overwrite
your own source files.

Jad uses JAVA class name as an output file name. For example, if class
file 'example1.class' contains JAVA class 'test1' then Jad will create
file 'test1.jad' rather than 'example1.jad'. If you want to specify
your own output file name use the output redirection:

   jad -p example1.class > myexm1.java

Option -d allows you to specify another directory for output files,
which are created, by default, in the current directory. For example:

   jad -o -dtest -sjava *.class

   (or jad -o -d test -s java *.class, which has the same effect)

This command decompiles all .class files in the current directory
and places all output files with extension .java into directory 'test'.


If you want to decompile the whole tree of JAVA classes,
use the following command:

   jad -o -r -sjava -dsrc tree/**/*.class

This command decompiles all .class files located in all
subdirectories of 'tree' and creates output files in subdirectories
of 'src' according to package names of classes. For example, if file
'tree/a/b/c.class' contains class 'c' from package 'a.b', then
output file will have a name 'src/a/b/c.java'.

Note the use of the "two stars" wildcard ('**') in the previous
command. It is handled by Jad rather than the command shell, so on
UNIX the last argument should be single-quoted:

   jad -o -r -sjava -dsrc 'tree/**/*.class'


In a case you want to check the accuracy of the decompilation or just
curious, there is an option -a which tells Jad to annotate the output
with JAVA Virtual Machine bytecodes.

Jad supports the inner and anonymous classes.
When Jad expands wildcards in the input file names,
it automatically skips matching inner classes.
On UNIX Jad skips inner classes if there is more than
one class specified in the command line.
Jad looks for inner classes in the directory of their top-level
container class.

3. List of the command-line options.

Jad accepts the following options:

   -a       - annotate the output with JVM bytecodes (default: off)
   -af      - same as -a, but output fully qualified names when annotating
   -clear   - clear all prefixes, including the default ones (can be abbreviated as -cl)
   -b       - output redundant braces (e.g., if(a) { b(); }, default: off)
   -d <dir> - directory for output files (will be created when necessary)
   -dead    - try to decompile dead parts of code (if any) (default: off)
   -disass  - disassemble method bytecodes (no JAVA source generated)
   -f       - output fully qualified names for classes/fields/methods (default: off)
   -ff      - output class fields before methods (default: after methods)
   -i       - output default initializers for all non-final fields
   -l<num>  - split strings into pieces of maximum <num> chars (default: off)
   -lnc     - annotate the output with line numbers (default: off)
   -lradix<num> - display long integers using the specified radix (8, 10 or 16)
   -nl      - split strings on newline character (default: off)
   -nocast  - don't generate auxiliary casts
   -nocode  - don't generate the source code for methods
   -noconv  - don't convert Java identifiers (default: convert)
   -noctor  - suppress the empty constructors
   -nodos   - do not check for class files written in DOS mode (CR before NL, default: check)
   -nofd    - don't disambiguate fields with the same names by adding signatures to their names (default: do)
   -noinner - turn off the support of inner classes (default: on)
   -nolvt   - ignore Local Variable Table information
   -nonlb   - don't output a newline before opening brace (default: do)
   -o       - overwrite output files without confirmation (default: off)
   -p       - send decompiled code to STDOUT (e.g., for piping)
   -pi<num> - pack imports into one line after <num> imports (default: 3)
   -pv<num> - pack fields with identical types into one line (default: off)
   -pa <pfx>- prefix for all packages in generated source files
   -pc <pfx>- prefix for classes with numerical names (default: _cls)
   -pf <pfx>- prefix for fields with numerical names (default: _fld)
   -pe <pfx>- prefix for unused exception names (default: _ex)
   -pl <pfx>- prefix for locals with numerical names (default: _lcl)
   -pm <pfx>- prefix for methods with numerical names (default: _mth)
   -pp <pfx>- prefix for method parms with numerical names (default: _prm)
   -r       - restore package directory structrure
   -radix<num> - display integers using the specified radix (8, 10 or 16)
   -s <ext> - output file extension (by default '.jad')
   -safe    - generate additional casts to disambiguate methods/fields (default: off)
   -space   - output space between keyword (if/for/while/etc) and expression (default: off)
   -stat    - display the total number of processed classes/methods/fields
   -t       - use tabs instead of spaces for indentation
   -t<num>  - use <num> spaces for indentation (default: 4)
   -v       - display method names being decompiled
   -8       - convert UNICODE strings into 8-bit strings
              using the current ANSI code page (Win32 only)
   -&       - redirect STDERR to STDOUT (Win32 only)

All single-word options have three formats:

  -o    - 'reverses' value of an option
  -o+   - set value to 'true' or 'on'
  -o-   - set value to 'false' or 'off'

You can specify the options you want to be set by default in the environment variable
JAD_OPTIONS. For example:

JAD_OPTIONS=-ff+ -nonlb+ -t+ -space+

2007-03-30 09:48:56
211.189.124.***

 

ÁÁÀº»ý°¢ ^^

÷ºÎÆÄÀÏ (ÃÑ 1°³)
  1. jadnt158.zip 233.01 KB (299 ´Ù¿î·Îµå)
0Á¡ (0¸í)
µ¡±Û 0°³ | ÅÂ±× 2°³
ű×ÀÔ·Â
½±Ç¥(,)±¸ºÐÀ¸·Î Çѹø¿¡ ¿©·¯ ű׸¦ ÀÔ·ÂÇÒ¼ö ÀÖ½À´Ï´Ù
decompile (1) jad (1)
À̸§ ºñ¹Ð¹øÈ£
ÀÚ·á½Ç
Community ÀÚ·á½Ç ÀÔ´Ï´Ù
¸¹Àº ÀÚ·á °øÀ¯ÇØ ÁÖ¼¼¿ä ^^
! ¹øÈ£ Á¦¸ñ ±Û¾´ÀÌ ÀÏÀÚ Á¶È¸
ÀÚ·á½Ç ÀÔ´Ï´Ù ^^ 1 GoodBug 2005-04-21 8,298
62 [ÀϹÝ] (IE7)'â ´ÝÀ¸½Ã°Ú½À´Ï±î' ¸Þ½ÃÁö ¾ø¾Ö´Â ¹æ¹ý 1 ¿À¶óŬÀÚ¹Ù 2012-02-06 3,512
61 ÇÑ±Û ±ÍÈ­ÀÎ Áõ°¡·Î ÀÎÇÑ ÇѱÛCharacter Set ¹®Á¦ 1 1 Na~ 2010-03-16 5,975
60 Input XSS Code Gubug 2009-09-07 5,267
59 [À¥Çϵå]°øÀ¯¿Â1.0 beta(¹«·á¹öÁ¯) ³Ê±¼´ë¸¶¿Õ 2009-01-22 8,048
58 Struts/JSP Simple°Ô½ÃÆÇ-Bright-Module»ç¿ë(20081213) Brown Khan 2008-12-13 8,895
57 ¹«·á ¿À¶óŬ °ü¸® Åø DBany/2008 ÁÖ¿äÈ­¸é ¼Ò°³ ... ¹ÚÈñ¼º 2008-06-10 11,022
56 ¹«·á ¿À¶óŬ °ü¸® Åø DBany/2008 ÁÖ¿ä±â´É ¼Ò°³ ... ¹ÚÈñ¼º 2008-06-10 6,091
55 ÆùÆ® ¸¼Àº °íµñ ÆùÆ® °ø°³ 1 1 kaiser 2008-05-29 8,954
54 ´õ ÀÌ»Û ¸¶¿ì½º Ä¿¼­ 1 kaiser 2008-03-07 10,365
53 À©µµ¿ìÁî ¸¶¸®¿À¼Õ Ä¿¼­ 4 kaiser 2007-12-05 9,134
52 K snagit 7.2.5 ¹öÀüÀ» ¹«·á·Î »ç¿ëÇغ¸¼¼¿ä.(È­¸éĸÃçÇÁ·Î±×·¥) 2 2 kaiser 2007-11-27 9,021
51 color color ÇÇÄ¿ (flash) 3 2 pearlÁþ°Å¸® Àü¹® 2007-11-12 6,733
50 iBATIS 2.3.0.677 - PreparedStatement - ? ¹ÙÀεù·Î±×ó¸® 2 idhacker 2007-11-06 10,098
49 ¾Ïȣȭ html ¼Ò½º ¾Ïȣȭ ½ÃÅ°±â 1 1 GoodBug 2007-09-24 10,753
48 À½¾Çµè±â °Ô½ÃÆÇ 1 ±â»çµµ 2007-04-11 8,617
decompile java decompile ÇÏÀ§ µð·ºÅ丮±îÁö ÇѲ¨¹ø¿¡ µðÄÄÆÈ Çϱâ 2 GoodBug 2007-03-30 11,971
46 [¿µ¹®] ÀÎÅÍ³Ý ÀͽºÇ÷¯·Î 7 Á¤½Ä¹öÀü(·¹ÁöÆ÷ÇÔ) 1 kaiser 2006-10-24 11,619
45 Snoop Monitor GoodBug 2006-10-17 8,771
44 ÇÁ·Î¼¼½º ¸ð´ÏÅ͸µ Åø GoodBug 2006-10-17 11,463
copyright 2005-2024 by Unicorn