summaryrefslogtreecommitdiffstats
path: root/src/test/TestRuntime1_4_2_03.java
blob: 366a06ad580ebc39528df59615a02b2b78366817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package test;

import java.io.File;
import java.util.Date;
import java.util.HashMap;

import com.vladium.utils.timing.TimerFactory;

import de.fernflower.main.decompiler.ConsoleDecompiler;


public class TestRuntime1_4_2_03 {

	public static void main(String[] args) {

		try {
			
			TimerFactory.initialize(new File(".").getCanonicalPath()+"/lib/timer/hrtlib.dll");
			
			Date start = new Date();
			
			
			ConsoleDecompiler decompiler = new ConsoleDecompiler(new HashMap<String, Object>(){{put("log", "warn");}});
			
			decompiler.addSpace(new File("C:\\Temp\\fernflower\\runtime1_4_2_03\\"), true);
			
			decompiler.decompileContext(new File("D:\\Nonbku\\workspace_3.4\\JavaRuntime1_4_2_03\\src\\"));

			
			System.out.println("\n\nTime elapsed " + (new Date().getTime() - start.getTime())/1000);
			
		} catch(Exception ex) {
			ex.printStackTrace();
		}
		
	}
	
}