2017년 1월 4일 수요일

Java에서 Command Line 명령어 실행

Java에서 wkhtmltoimage를 실행시키기 위해 외부 프로그램 실행 샘플 코드를 찾았다.

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class RunProgram {
public static void main(String[] args) {
Runtime run = Runtime.getRuntime();
Process p;
String strCmd = "ipconfig";
try {
p = run.exec(strCmd);
StreamPrintThread errprint = new StreamPrintThread(p.getErrorStream());
StreamPrintThread okprint = new StreamPrintThread(p.getInputStream());
p.getOutputStream().close();
errprint.start();
okprint.start();
int rst = p.waitFor();
if ( 0 == rst) {
System.out.println("RunProgram success : " + strCmd);
}
else {
System.out.println("RunProgram fail (rst:"+ rst +") : " + strCmd);
}
} catch (InterruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
class StreamPrintThread extends Thread {
BufferedReader br = null;
private StreamPrintThread() {}
public StreamPrintThread(InputStream is) {
br = new BufferedReader(new InputStreamReader(is));
}
void close() {
try {
if(br != null)
br.close();
}
catch(Exception e) {
e.printStackTrace();
System.out.println(e);
}
}
public void run() {
try {
String line = null;
while((line = br.readLine()) != null) {
System.out.println(line);
}
}
catch(Exception e) {
e.printStackTrace();
System.out.println(e);
}
finally {
close();
}
}
}
view raw RunProgram.java hosted with ❤ by GitHub


해당 코드를 활용해서 명령을 실행하고 정상 실행 여부도 확인할 수 있었다.

2017년 1월 3일 화요일

[wkhtmltopdf, wkhtmltoimage] html을 pdf나 이미지로 변환

wkhtmltopdf, wkhtmltoimage, html to pdf, html to image
  • html 페이지를 이미지화 하는 모듈을 여러가지 찾던 중 css가 브라우저에 가장 가깝게 출력되는 것으로 확인되어 선택했다.

  1. 설치


  2. 활용
    • 기본 명령어는 wkhtmltopdf http://google.com google.pdf 형태로 간단하게 사용할 수 있다.
    • 추가 옵션은 wkhtmltoimage -H 명령어로 전체 옵션을 확인 할 수 있다.


    1) 실제 적용시 활용했던 주요 옵션
    • -q 기본 출력되는 진행 메시지를 출력하지 않도록 한다. 개발 완료 후 적용했다.
    • -width 이미지의 가로 너비를 설정한다.