有没有一种在 Swing 应用中保留打印机设置的好方法?

2022-09-04 23:34:07

我们正在使用新的Java打印API,用于向用户显示对话框。PrinterJob.printDialog(attributes)

为了保存用户的设置以供下次使用,我想这样做:

PrintRequestAttributeSet attributes = loadAttributesFromPreferences();
if (printJob.printDialog(attributes)) {
    // print, and then...

    saveAttributesToPreferences(attributes);
}

但是,通过这样做,我发现有时(我还没有弄清楚如何)属性在里面得到一些不好的数据,然后当你打印时,你会得到一个白色的页面。然后,代码将中毒的设置保存到首选项中,并且所有后续的打印运行也会获得中毒的设置。此外,练习的整个要点(使新运行的设置与用户为上一次运行选择的设置相同)将被失败,因为新对话框似乎不使用旧设置。

所以我想知道是否有适当的方法来做到这一点。当然,Sun并不打算让用户在每次启动应用程序时都必须选择打印机,页面大小,方向和边距设置。

编辑以显示存储方法的实现:

private PrintRequestAttributeSet loadAttributesFromPreferences()
{
    PrintRequestAttributeSet attributes = null;

    byte[] marshaledAttributes = preferences.getByteArray(PRINT_REQUEST_ATTRIBUTES_KEY, null);
    if (marshaledAttributes != null)
    {
        try
        {
            @SuppressWarnings({"IOResourceOpenedButNotSafelyClosed"})
            ObjectInput objectInput = new ObjectInputStream(new ByteArrayInputStream(marshaledAttributes));

            attributes = (PrintRequestAttributeSet) objectInput.readObject();
        }
        catch (IOException e)
        {
            // Can occur due to invalid object data e.g. InvalidClassException, StreamCorruptedException
            Logger.getLogger(getClass()).warn("Error trying to read print attributes from preferences", e);
        }
        catch (ClassNotFoundException e)
        {
            Logger.getLogger(getClass()).warn("Class not found trying to read print attributes from preferences", e);
        }
    }

    if (attributes == null)
    {
        attributes = new HashPrintRequestAttributeSet();
    }

    return attributes;
}

private void saveAttributesToPreferences(PrintRequestAttributeSet attributes)
{
    ByteArrayOutputStream storage = new ByteArrayOutputStream();
    try
    {
        ObjectOutput objectOutput = new ObjectOutputStream(storage);
        try
        {
            objectOutput.writeObject(attributes);
        }
        finally
        {
            objectOutput.close(); // side-effect of flushing the underlying stream
        }
    }
    catch (IOException e)
    {
        throw new IllegalStateException("I/O error writing to a stream going to a byte array", e);
    }

    preferences.putByteArray(PRINT_REQUEST_ATTRIBUTES_KEY, storage.toByteArray());
}

编辑:好吧,它似乎不记得打印机的原因是它根本不在PrintRequestAttributeSet中。实际上,边距和页面大小会被记住,至少在设置随机中毒之前是这样。但是用户选择的打印机不在这里:

[0] = {java.util.HashMap$Entry@9494} class javax.print.attribute.standard.Media -> na-letter
[1] = {java.util.HashMap$Entry@9501} class javax.print.attribute.standard.Copies -> 1
[2] = {java.util.HashMap$Entry@9510} class javax.print.attribute.standard.MediaPrintableArea -> (10.0,10.0)->(195.9,259.4)mm
[3] = {java.util.HashMap$Entry@9519} class javax.print.attribute.standard.OrientationRequested -> portrait

答案 1

您似乎要查找的是 PrintServiceAttributeSet,而不是 .PrintRequestAttributeSet

查看 PrintServiceAttribute 接口,并查看所需的元素是否已作为类实现。如果没有,您可以实现自己的类。PrintServiceAttribute


答案 2

推荐