我的目标是通过程序打开现金抽屉,但是我没有找到有关Java与Windows端口交互的详细信息,因此我无法使其正常工作。这些是我尝试过的方法(Java控制台中没有错误):

public void cashdrawerOpen()   {

    String code1 = "27 112 0 150 250"; //decimal
    String code2 = "1B 70 00 96 FA"; //hexadecimal
    String code = "ESCp0û."; //ascii

     PrintService service = PrintServiceLookup.lookupDefaultPrintService();
     System.out.println(service.getName());
     DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
    DocPrintJob pj = service.createPrintJob();
     byte[] bytes;
     bytes=code2.getBytes();
     Doc doc=new SimpleDoc(bytes,flavor,null);
      try {
        pj.print(doc, null);
    } catch (PrintException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}


public void cashdrawerOpen2(){
    String code1 = "27 112 0 150 250";
    String code2 = "1B 70 00 96 FA";
    String code = "ESCp0û.";
    FileOutputStream os = null;
    try {
        os = new FileOutputStream("USB001:POS-58");
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }
      PrintStream ps = new PrintStream(os);
      ps.print(code1.getBytes());
      ps.close();
}


然后我开始玩cmd,特别是跟随this线程,但是当我执行命令'copy / b open.bat USB001'时,它只会说:'overwrite USB001? (是/否/全部)'

任何想法?

最佳答案

嗯... USB001文件必须已经存在于您要复制到的位置,现在它正在询问您是否要覆盖它,因为您将open.bat复制到了相同的USB001文件名。

如果您始终要覆盖USB001文件,则还可以使用/ Y开关,例如:

copy /B /Y open.bat USB001


您可以通过输入以下命令在命令提示符下查看所有用于COPY的开关:

copy /?

07-27 13:30