debug mode 실행 여부 조사(Eclipse) 본문

Programming/Java

debug mode 실행 여부 조사(Eclipse)

halatha 2011. 3. 31. 04:56
public class TestDebugMode {
	//	http://stackoverflow.com/questions/1109019/determine-if-a-java-application-is-in-debug-mode-in-eclipse
	//public static void main(String[] args)
	//{
	//	System.out.println(System.getProperty("java.vm.info", ""));
	//}
	//	http://www.rgagnon.com/javadetails/java-detect-if-running-in-debug-mode.html
	public static void main(String args[]) {
		boolean isDebug =
			java.lang.management.ManagementFactory.getRuntimeMXBean().
			getInputArguments().toString().indexOf("-agentlib:jdwp") > 0;
		System.out.println("In debug : " + isDebug);
	}    
}
Comments