일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- import
- plugin
- VirtualBox
- maVen
- xargs
- Windows 10
- tomcat
- grep
- context
- find
- JavaScript
- Source
- netsh
- profile
- ssh
- Mac
- 네트워크
- GIT
- bash
- Quartz
- web.xml
- 줄바꿈 문자
- Eclipse
- port
- Windows
- vscode
- IntelliJ
- 단축키
- resource
- lsof
- Today
- Total
목록분류 전체보기 (1787)
develog
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..
// 현재 디렉토리// C:\Documents and Settings\Administrator\workspace\testApp 1. getAbsolutePath (., .. 을 계산하지 않고 그대로 출력)System.out.println(new File(".").getAbsolutePath());System.out.println(new File("..").getAbsolutePath()); // outputC:\Documents and Settings\Administrator\workspace\testApp\.C:\Documents and Settings\Administrator\workspace\testApp\.. 2. getCanonicalPath (., .. 을 계산한 경로를 출력)System.ou..
http://www.java2s.com/Open-Source/Java/Development/jacob-1.15/com/jacob/Catalogjacob.htm
SELECT *FROM TAB SELECT *FROM COLS
DECLARE V_RET VARCHAR2(100);BEGIN FOR I IN 1..10 LOOP V_RET := DBMS_RANDOM.VALUE(1, 10); DBMS_OUTPUT.PUT_LINE(V_RET); END LOOP;END; // output8.9839078322667001170456974268916958057.851388518184581971599266112831883860421.157766466102041956401705763364660090826.894532276694845208644974061237389197652.924221136847810217187949668093751930521.533997361421105739929250368540803519238.09751621393351335..