java - 如何在java swing中的每个页面中打印带有页脚的整个JPanel

标签 java swing

好吧,这可能很简单。但想不通。

我有一个包含 JTable 的 JPanel。 JTable 包含很少的行,有时更多,因为我插入其中的表模型取决于数据库。

但是,我不使用任何包含我的 JTable 的 JScollpane。因此,当 JTable 包含越来越多的行时,父 JPanel 会自动调整其高度。这工作得很好。

问题是我想一次打印整个 JPanel。可能需要几页,我不在乎。我可以直接打印带有页眉和页脚的 JTable。但就我而言,JPanel 包含一些重要的组件,例如 JLable。因此,没有其他方法可以避免 JPanel 的打印。

我搜索了几个在线链接,到处都找到了实现可打印界面的建议。

所以我在我的类中实现了 printable 并重载 print....

@Override
public int print(Graphics arg0, PageFormat arg1, int arg2) throws PrinterException {

    Graphics2D g2d = (Graphics2D) arg0;
    g2d.translate((int) arg1.getImageableX(), (int) arg1.getImageableY());

    float pageWidth = (float) arg1.getImageableWidth();
    float pageHeight = (float) arg1.getImageableHeight();

    float imageHeight = (float) paintPanel.getHeight();
    float imageWidth = (float) paintPanel.getWidth();

    float scaleFactor = Math.min((float) pageWidth / (float) imageWidth, (float) pageHeight / (float) imageHeight);

    int scaledWidth = (int) (((float) imageWidth) * scaleFactor);

    int scaledHeight = (int) (((float) imageHeight) * scaleFactor);

    BufferedImage canvas = new BufferedImage(paintPanel.getWidth(), paintPanel.getHeight(), BufferedImage.TYPE_INT_RGB);
    Graphics2D gg = canvas.createGraphics();
    paintPanel.paint(gg);
    Image img = canvas;
    g2d.drawImage(img, 0, 0, scaledWidth, scaledHeight, null);
    return Printable.PAGE_EXISTS;
}

它不工作。

另一个问题,这是我的第二个问题。我想在每个页面中放置一个页脚 JPanel。那么怎么可能呢。

请帮帮我。谢谢。

最佳答案

所以基于this example它演示了如何跨多个页面打印组件,我对其进行了修改以允许打印页脚。

此示例直接通过 Graphics 上下文进行绘制,但从概念上讲,该过程非常简单,可以使用提供的某种 JComponent 进行绘制。

PageExample

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.Shape;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import static java.awt.print.Printable.NO_SUCH_PAGE;
import static java.awt.print.Printable.PAGE_EXISTS;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.print.attribute.HashPrintRequestAttributeSet;
import javax.print.attribute.PrintRequestAttributeSet;
import javax.print.attribute.standard.MediaSizeName;
import javax.print.attribute.standard.PrinterResolution;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.Scrollable;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class PrintMe {

    public static void main(String[] args) {
        new PrintMe();
    }

    public PrintMe() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                TestPane testPane = new TestPane();

                JButton btn = new JButton("Print");
                btn.addActionListener(new ActionListener() {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
                        aset.add(MediaSizeName.ISO_A4);
                        aset.add(new PrinterResolution(300, 300, PrinterResolution.DPI));

                        PrinterJob pj = PrinterJob.getPrinterJob();
                        pj.setPrintable(new MultiPagePrintable(testPane));

                        if (pj.printDialog(aset)) {
                            try {
                                pj.print(aset);
                                testPane.getParent().invalidate();
                                testPane.getParent().validate();
                            } catch (PrinterException ex) {
                                ex.printStackTrace();
                            }
                        }
                    }
                });

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new JScrollPane(testPane));
                frame.add(btn, BorderLayout.SOUTH);
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel implements Scrollable {

        private BufferedImage img;

        public TestPane() {
            try {
                img = ImageIO.read(some image source);
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }

        @Override
        public Dimension getPreferredSize() {
            return img == null ? new Dimension(200, 200) : new Dimension(img.getWidth(), img.getHeight());
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            if (img != null) {
                Graphics2D g2d = (Graphics2D) g.create();
                int x = (getWidth() - img.getWidth()) / 2;
                int y = (getHeight() - img.getHeight()) / 2;
                g2d.drawImage(img, x, y, this);
                g2d.dispose();
            }
        }

        @Override
        public Dimension getPreferredScrollableViewportSize() {
            return new Dimension(200, 200);
        }

        @Override
        public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
            return 128;
        }

        @Override
        public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
            return 128;
        }

        @Override
        public boolean getScrollableTracksViewportWidth() {
            return false;
        }

        @Override
        public boolean getScrollableTracksViewportHeight() {
            return false;
        }

    }

    public class MultiPagePrintable implements Printable {

        private JComponent component;
        private int lastPage = 0;
        private double yOffset;

        private Font footerFont;

        public MultiPagePrintable(JComponent component) {
            this.component = component;

            footerFont = new Font("Arial", Font.BOLD, 24);
        }

        @Override
        public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
            int result = NO_SUCH_PAGE;

            String name = "I be mighty!";
            String page = Integer.toString(pageIndex);

            FontMetrics fm = graphics.getFontMetrics(footerFont);
            double footerHeight = fm.getHeight() + 4;

            double height = pageFormat.getImageableHeight() - footerHeight;
            component.setSize(component.getPreferredSize());

            if (lastPage != pageIndex) {
                lastPage = pageIndex;
                yOffset = height * pageIndex;
                if (yOffset > component.getHeight()) {
                    yOffset = -1;
                }
            }

            if (yOffset >= 0) {
                Graphics2D g2d = (Graphics2D) graphics.create();

                g2d.translate((int) pageFormat.getImageableX(),
                                (int) pageFormat.getImageableY());

                g2d.translate(0, -yOffset);
                component.printAll(g2d);
                g2d.translate(0, +yOffset);
                Shape footerArea = new Rectangle2D.Double(0, height, pageFormat.getImageableWidth(), footerHeight);
                g2d.setColor(Color.WHITE);
                g2d.fill(footerArea);
                g2d.setColor(Color.RED);
                g2d.draw(footerArea);

                g2d.setColor(Color.BLACK);


                g2d.translate(0, (pageFormat.getImageableHeight() - footerHeight));
                float x = 2;
                float y = (float)((footerHeight - fm.getHeight()) / 2d);
                g2d.drawString(name, x, y + fm.getAscent());

                x = (float)(pageFormat.getImageableWidth() - fm.stringWidth(page) - 2);
                g2d.drawString(page, x, y + fm.getAscent());

                g2d.dispose();
                result = PAGE_EXISTS;
            }
            return result;
        }

    }

}

关于java - 如何在java swing中的每个页面中打印带有页脚的整个JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32000888/

相关文章:

java - JFreeChart DialPlot 减少标题差距

java - 使用 FlowLayout 定位子面板

java - 如何使用自定义 JTable 单元格编辑器和单元格渲染器

Java logging API MemoryHandler 即时转储日志

java - 使用 JSch 读取 SFTP 服务器上文件的文件扩展属性

java - 如何启动不同的定时器

Java:如何识别特定的字符串

java - 如何创建具有形状和渐变的自定义 Java Swing GUI 组件

java - Android/Java 重写文件使其为空?

java - 关于制作TitleBar的一个问题