java打印图片时出乱码,这个代码有问题吗?还是哪边字符集需要调正?

  public void printPdf(String fileName) {
    //构造一个文件选择器,默认为当前目录
    File file = new File(fileName);//获取选择的文件
    //构建打印请求属性集
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    //设置打印格式,因为未确定文件类型,这里选择AUTOSENSE
    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
    //查找所有的可用打印服务
    PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);
    //定位默认的打印服务
    PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
    // 显示打印对话框
    PrintService service = ServiceUI.printDialog(null, 200, 200, printService, defaultService, flavor, pras);
    if (service != null) {
 
      try {
        DocPrintJob job = service.createPrintJob(); // 创建打印作业
        FileInputStream fis; // 构造待打印的文件流
        fis = new FileInputStream(file);
        DocAttributeSet das = new HashDocAttributeSet();
        Doc doc = new SimpleDoc(fis, flavor, das);
        job.print(doc, pras);
      } catch (Exception e) {
        e.printStackTrace();
      }
    }

你好,我是有问必答小助手,非常抱歉,本次您提出的有问必答问题,技术专家团超时未为您做出解答


本次提问扣除的有问必答次数,将会以问答VIP体验卡(1次有问必答机会、商城购买实体图书享受95折优惠)的形式为您补发到账户。


因为有问必答VIP体验卡有效期仅有1天,您在需要使用的时候【私信】联系我,我会为您补发。