JAVA에서 ZPL 프린터 연결 (IP)

개발/실전 2023. 11. 2. 10:26

try {
            Socket clientSocket = new Socket("10.200.23.4",9100); //ZPL 프린터 IP
            
            DataOutputStream outToServer = new DataOutputStream(clientSocket.getOutputStream() );
            //The data being sent in the lines below illustrate CPCL  one can change the data for the corresponding 
            //language being used (ZPL, EPL)   
            
            outToServer.writeBytes("^XA^FO20,20^A0N,25,25^FDThis is a ZPL test.^FS^XZ");
            clientSocket.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

 

이렇게만 해주면 되넴

'개발 > 실전' 카테고리의 다른 글

톰캣에 SSL 설정  (0) 2020.02.19
PermGen Space 에러  (0) 2018.08.14
이클립스 세로줄 플러그인  (0) 2018.03.23
자바스크립트, style 블럭처리 display none,block,inline  (0) 2017.10.31
자바스크립트 날짜 계산  (0) 2016.06.20