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 |
Tags
- agile
- erlang
- Software Engineering
- RFID
- web
- QT
- France
- hadoop
- program
- Programming
- psychology
- ubuntu
- Java
- django
- programming_book
- hbase
- Kuala Lumpur
- Italy
- management
- Book
- Spain
- Python
- history
- Malaysia
- comic agile
- leadership
- Book review
- Linux
- essay
- MySQL
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