第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在不顯示打印對(duì)話框的情況下使用特定打印機(jī)和特定文件名打印 JTable?

如何在不顯示打印對(duì)話框的情況下使用特定打印機(jī)和特定文件名打印 JTable?

倚天杖 2022-07-20 19:37:32
我認(rèn)為標(biāo)題很清楚。我在printerName 的行有一個(gè)java.lang.ClassCastException,我不知道如何直接指定輸出pdf 的路徑。到目前為止,這是我的代碼:DateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");    String date = sdf.format(new Date());    File file = null;    MessageFormat header = null;    MessageFormat footer = new MessageFormat("Page {0,number,integer}");    if(choix.equals("Lc")){        header = new MessageFormat("Liste des produits vendus le : " + date);        file = new File("Z:/Enregistrements/FeuillesActiviteJour/ListeProduitsVendus_"+sdf.format(new Date())+".pdf");    }    else{        header = new MessageFormat("Liste des Encaissements effectués le : " + date);        file = new File("Z:/Enregistrements/FeuillesActiviteJour/ListeEncaissements_"+sdf.format(new Date())+".pdf");    }    Destination destination = new Destination(file.toURI());    PrintService service = null;    PrintService[] services = PrinterJob.lookupPrintServices();for (PrintService service1 : services) {    if (service1.getName().equalsIgnoreCase("Microsoft Print to PDF")) {        service = service1;    }}    PrintRequestAttributeSet set = new HashPrintRequestAttributeSet();    set.add(OrientationRequested.LANDSCAPE);    set.add(destination);try {    table.print(JTable.PrintMode.FIT_WIDTH, header, footer, false, set, false, service);} catch (PrinterException ex) {    Logger.getLogger(TraitementFeuilleActivite.class.getName()).log(Level.SEVERE, null, ex);} catch (HeadlessException ex) {    Logger.getLogger(TraitementFeuilleActivite.class.getName()).log(Level.SEVERE, null, ex);}}
查看完整描述

1 回答

?
嗶嗶one

TA貢獻(xiàn)1854條經(jīng)驗(yàn) 獲得超8個(gè)贊

PrinterName無法添加到您的HashPrintRequestAttributeSet. 您應(yīng)該將其添加到HashPrintServiceAttributeSet.

HashPrintRequestAttributeSet只能包含PrintRequestAttribute類型的對(duì)象或其子類。這就是為什么 Java 嘗試將PrintName(類型為PrintServiceAttribute的)對(duì)象強(qiáng)制轉(zhuǎn)換為PrintRequestAttribute無法完成的對(duì)象,因?yàn)樗皇菑脑搶?duì)象繼承的。-> ClassCastException


查看完整回答
反對(duì) 回復(fù) 2022-07-20
  • 1 回答
  • 0 關(guān)注
  • 102 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)