Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- leadership
- Programming
- Spain
- django
- psychology
- essay
- web
- erlang
- Python
- Book
- hadoop
- Software Engineering
- Italy
- Kuala Lumpur
- Linux
- programming_book
- RFID
- agile
- ubuntu
- Malaysia
- program
- history
- Java
- QT
- management
- MySQL
- comic agile
- hbase
- Book review
- France
Archives
- Today
- Total
debug mode 실행 여부 조사(Eclipse) 본문
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