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