일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- find
- 단축키
- Mac
- VirtualBox
- import
- Eclipse
- 네트워크
- Windows
- 줄바꿈 문자
- resource
- profile
- ssh
- grep
- tomcat
- port
- bash
- lsof
- plugin
- maVen
- netsh
- Source
- vscode
- xargs
- Quartz
- web.xml
- Windows 10
- context
- GIT
- JavaScript
- Today
- Total
목록분류 전체보기 (1762)
develog
C:\> schtasks /Run /TN "MyDailyJob"
Windows 인 경우java -cp ".;경로1;경로2/a.jar;경로3/*;" TestMain
System Propertieshttp://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html public class TestMain { public static void main(String[] args) {System.out.println("START");System.out.println("-----------------------------------------"); Properties props = System.getProperties();Set set = props.keySet();Iterator iter = set.iterator();while (iter.hasNext()) {String key = (String) iter.n..
JavaMail jar downloadhttps://java.net/projects/javamail/pages/Home ...
public class UserException extends RuntimeException { public UserException(String msg) { super(msg + ", at " + getInfoSrcLn()); } private static String getInfoSrcLn() { StackTraceElement[] stackTraces = Thread.currentThread().getStackTrace(); StackTraceElement stackTraceElement = stackTraces[3]; return String.valueOf(stackTraceElement); } }
JACOB - Java COM Bridgehttp://sourceforge.net/projects/jacob-project/ ------------------------------------------------------------------------------- import java.io.File; import com.jacob.activeX.ActiveXComponent;import com.jacob.com.Dispatch;import com.jacob.com.Variant; public class TestMain { public static void main(String[] args) throws Exception {System.out.println("START");System.out.print..