**저장되있는 숫자로 바코드 만들기 ZXing.jar 가 필요하다. MultiFormatWriter multi = new MultiFormatWriter();try { String text = "9788996454816"; text = new String(text.getBytes("UTF-8"), "ISO-8859-1"); BitMatrix bitMatrix = multi.encode(text, BarcodeFormat.EAN_13, 100, 100); MatrixToImageWriter.writeToStream(bitMatrix, "png", new FileOutputStream(new File("D:/file/"+text+".png")));} catch (Exception e) {e.printStac..