Notice
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
- sql
- github
- spring framework
- 안티 패턴
- 쿼리
- CMD
- framework
- mave project
- 마켓보로
- javascript
- Java
- 자바에서 응용프로그램 실행
- ANTI PATTERN
- Stash
- NSIS
- Runtime
- Custom URI Schemes
- 레지스트리
- Oracle
- DB
- 설치프로그램
- Runtime.getRuntime.exec()
- MVC
- 튜닝
- 채용공고
- 현재날짜 구하기
- 자바스크립트
- mybatis
- Git
- spring
Archives
- Today
- Total
목록Runtime (1)
corn-cheese
[Java]자바에서 cmd 명령어 실행하기, Runtime.getRuntime.exec()
public class Main3 extends Thread{ public static String line; public static InputStream is; public static BufferedReader br; public String ID; public String PW; public static void main(String[] args){ try { is = Runtime.getRuntime().exec("C:\\Program Files (x86)\\SAP\\FrontEnd\\SAPgui\\sapshcut.exe").getInputStream(); br = new BufferedReader(new InputStreamReader(is, "MS949")); } catch (IOExcept..
IT/java
2020. 3. 10. 17:02