Java Windows UTF-8 (unicode) 打印

标签 java windows unicode printing utf-8

我遇到的问题是,当您在 Windows 中尝试通过 JAVA 打印时,您只能使用 AUTOSENSE 属性。 但是我想要打印的字符串是希腊语 => UTF-8。当我将 AUTOSENSE 转换为 TEXT_PLAIN_UTF8 时,我得到一个: sun.print.PrintJobFlavorException:无效的 flavor 异常....

有什么建议吗?或者有其他的 Unicode 打印方式吗? 谢谢!

    String datastr = "UNICODE STRING";
    byte[] databa = null;
    try {
        databa = datastr.getBytes("UTF8");
    } catch (UnsupportedEncodingException e1) {
        e1.printStackTrace();
    }

    DocFlavor docFlavor = DocFlavor.BYTE_ARRAY.TEXT_PLAIN_UTF_16;
    PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
    PrintService service = PrintServiceLookup.lookupDefaultPrintService();

    if (databa != null) {
        DocPrintJob pjob = service.createPrintJob();
        Doc doc = new SimpleDoc(databa, docFlavor, null);
        try {
            pjob.print(doc, aset);
        } catch (PrintException e) {
            e.printStackTrace();
        }

如果我尝试在 STRING.TEXT_PLAIN 以及除 AUTOSENSE 之外的其他所有内容中打印它,我会得到以下结果:

sun.print.PrintJobFlavorException: invalid flavor
    at sun.print.Win32PrintJob.print(Unknown Source)

最后支持的口味是这些......

Win32 Printer : HP Deskjet 5440 Series Flavors:
    image/gif; class="[B"
    image/gif; class="java.io.InputStream"
    image/gif; class="java.net.URL"
    image/jpeg; class="[B"
    image/jpeg; class="java.io.InputStream"
    image/jpeg; class="java.net.URL"
    image/png; class="[B"
    image/png; class="java.io.InputStream"
    image/png; class="java.net.URL"
    application/x-java-jvm-local-objectref; class="java.awt.print.Pageable"
    application/x-java-jvm-local-objectref; class="java.awt.print.Printable"
    application/octet-stream; class="[B"
    application/octet-stream; class="java.net.URL"
    application/octet-stream; class="java.io.InputStream"

最佳答案

使用 SWT 更容易做到这一点,这里是代码......

package printer;

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.printing.Printer;
import org.eclipse.swt.printing.PrinterData;

public class TextPrinter {

    Printer printer;
    GC gc;
    int lineHeight = 0;
    int tabWidth = 0;
    int leftMargin;
    int rightMargin;
    int topMargin, bottomMargin;
    int x;
    int y;
    int index;
    int end;
    String tabs;
    StringBuffer wordBuffer;

    public TextPrinter() {
    }

    public void printString(final String textToPrint) {

        PrinterData data = Printer.getDefaultPrinterData();
        printer = new Printer(data);
        Thread printingThread = new Thread("Printing") {
            @Override
            public void run() {
                print(printer, textToPrint);
                printer.dispose();
            }
        };
        printingThread.start();
    }

    void print(Printer printer, String textToPrint) {
        if (printer.startJob("iassael")) { 

            Rectangle clientArea = printer.getClientArea();
            Rectangle trim = printer.computeTrim(0, 0, 0, 0);
            Point dpi = printer.getDPI();
            leftMargin = dpi.x + trim.x; // one inch from left side of paper
            rightMargin = clientArea.width - dpi.x + trim.x + trim.width; 
            topMargin = dpi.y + trim.y; // one inch from top edge of paper
            bottomMargin = clientArea.height - dpi.y + trim.y + trim.height;

            /* Create a buffer for computing tab width. */
            int tabSize = 4; // is tab width a user setting in your UI?
            StringBuffer tabBuffer = new StringBuffer(tabSize);
            for (int i = 0; i < tabSize; i++)
                tabBuffer.append(' ');
            tabs = tabBuffer.toString();

            /*
             * Create printer GC, and create and set the printer font &
             * foreground color.
             */
            gc = new GC(printer);

            Font font = new Font(null, "Helvetica", 11, SWT.NORMAL);
            gc.setFont(font);
            tabWidth = gc.stringExtent(tabs).x;
            lineHeight = gc.getFontMetrics().getHeight();

            /* Print text to current gc using word wrap */
            printText(textToPrint);
            printer.endJob();

            /* Cleanup graphics resources used in printing */
            font.dispose();
            gc.dispose();
        }
    }

    void printText(String textToPrint) {
        printer.startPage();
        wordBuffer = new StringBuffer();
        x = leftMargin;
        y = topMargin;
        index = 0;
        end = textToPrint.length();
        while (index < end) {
            char c = textToPrint.charAt(index);
            index++;
            if (c != 0) {
                if (c == 0x0a || c == 0x0d) {
                    if (c == 0x0d && index < end
                            && textToPrint.charAt(index) == 0x0a) {
                        index++; // if this is cr-lf, skip the lf
                    }
                    printWordBuffer();
                    newline();
                } else {
                    if (c != '\t') {
                        wordBuffer.append(c);
                    }
                    if (Character.isWhitespace(c)) {
                        printWordBuffer();
                        if (c == '\t') {
                            x += tabWidth;
                        }
                    }
                }
            }
        }
        if (y + lineHeight <= bottomMargin) {
            printer.endPage();
        }
    }

    void printWordBuffer() {
        if (wordBuffer.length() > 0) {
            String word = wordBuffer.toString();
            int wordWidth = gc.stringExtent(word).x;
            if (x + wordWidth > rightMargin) {
                /* word doesn't fit on current line, so wrap */
                newline();
            }
            gc.drawString(word, x, y, false);
            x += wordWidth;
            wordBuffer = new StringBuffer();
        }
    }

    void newline() {
        x = leftMargin;
        y += lineHeight;
        if (y + lineHeight > bottomMargin) {
            printer.endPage();
            if (index + 1 < end) {
                y = topMargin;
                printer.startPage();
            }
        }
    }
}

关于Java Windows UTF-8 (unicode) 打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8390877/

相关文章:

java - 如何通过网络加载文件并将其作为字符串处理

java - 如何使用Redis aeCreateTimeEvent?

c# - 如何在winform中移动动态添加的图形线

windows - 允许非管理员使用diskpart挂载VHD吗?

string - 是否有完全正确的 Unicode 支持的编程语言?

Java - 为什么我的 AES 程序不加密/解密双引号?

java - maven 上不支持major.minor 版本51.0

node.js - 如何在Windows上从v0.12.2升级nodejs?

python - 获取文件的最后n行——解码错误

带有 unicode 和标点符号的 Javascript 正则表达式