caTea 블로그

바코드 생성 본문

spring(java)

바코드 생성

ZaRas 2016. 5. 17. 16:26
반응형

barbecue-1.5-beta1.jar.zip



Barcode barcode = BarcodeFactory.createCode128(lot);

barcode.setBarHeight(printHeight);

barcode.setBarWidth(printWidth);

File file = new File(barcodePath + lot + ".png");

if(file.exists() == true){

obj.setLot_img(returnBarcodePath + lot + ".png");

urlArray.add(obj);

continue;

}

BarcodeImageHandler.savePNG(barcode, file);

728x90

'spring(java)' 카테고리의 다른 글

fcm server side code spring java  (2) 2016.12.12
html convert pdf (html문서를 pdf 파일로 변환)  (0) 2016.05.11
http 데이터 송수신 클라이언트단  (0) 2016.01.29
java mail sand example  (0) 2015.09.10
java excel paser example  (0) 2015.09.10