250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jpa
- MSSQL
- oracle
- Open Source
- Exception
- JDBC
- ubuntu
- PostgreSQL
- Python
- Thymeleaf
- AJAX
- Spring Boot
- error
- maven
- Docker
- myBatis
- Tomcat
- Eclipse
- 오픈소스
- Source
- git
- 문서
- spring
- SpringBoot
- MySQL
- Core Java
- JavaScript
- 설정
- STS
- IntelliJ
Archives
- Today
- Total
목록Process (1)
헤르메스 LIFE
[Core Java] 외부명령 실행하기
String create[] = new String[]{"net.driver", "i:", "\\192.168.1.90\test_drive", "pw", "/user:id"} Process oProcess = new ProcessBuilder(create).start(); // 스캐너클래스를 사용해 InputStream을 스캔함 //Scanner s = new Scanner(oProcess.getInputStream(), "UTF-8"); Scanner s = new Scanner(oProcess.getInputStream(), "ms949"); while (s.hasNextLine() == true) { // 표준출력으로 출력 logger.info(s.nextLine()); } 실행결과 더보기 10:0..
Core Java
2021. 3. 23. 00:54