일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ssh
- profile
- JavaScript
- context
- bash
- xargs
- GIT
- Eclipse
- Windows 10
- tomcat
- resource
- port
- find
- grep
- VirtualBox
- 단축키
- 네트워크
- lsof
- maVen
- plugin
- import
- Windows
- IntelliJ
- Mac
- netsh
- vscode
- Source
- web.xml
- 줄바꿈 문자
- Quartz
- Today
- Total
목록Dev/Java (163)
develog
http://www.innovation.ch/java/HTTPClient/urlcon_vs_httpclient.html
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..