Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8952037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:47:04+00:00 2026-06-15T13:47:04+00:00

I am using a JInternalFrame in that i have added JTable . Now i

  • 0

I am using a JInternalFrame in that i have added JTable. Now i want to show background image in JTable. so i have added following code in the JScrollPane's customize code.

jScrollPane1 = new javax.swing.JScrollPane(ViewBalanceReportTable) {{
    setOpaque(false);
    getViewport().setOpaque(false);
}
@Override
protected void paintComponent(Graphics g) {
    final int imageWidth = image.getIconWidth();
    final int imageHeight = image.getIconHeight();
    final Dimension d = getSize();
    final int x = (d.width - imageWidth)/2;
    final int y = (d.height - imageHeight)/2;
    g.drawImage(image.getImage(), x, y, null, null);
    super.paintComponent(g);
}

}

but still it is not showing the background image can any one help me on this

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:47:06+00:00Added an answer on June 15, 2026 at 1:47 pm

    Basically, you need to make sure that EVERYTHING that sits on top of the frame is transparent (opaque == false).

    The table is a special case, it doesn’t tend to respect the opaque setting, because that would be easy. Instead, we can trick it by also using a transparent color.

    You are AWLAYS better of replacing the content pane if you want to paint to any kind of frame. This will allow you to paint within the content area and not in areas used by things like the frame’s border or menus.

    enter image description here

    public class TableWithBackground {
    
        public static void main(String[] args) {
            new TableWithBackground();
        }
    
        public TableWithBackground() {
            EventQueue.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    }
    
                    JDesktopPane desktopPane = new JDesktopPane();
                    BackgroundInternalFrame backgroundInternalFrame = new BackgroundInternalFrame();
                    desktopPane.add(backgroundInternalFrame);
                    try {
                        backgroundInternalFrame.setMaximum(true);
                    } catch (PropertyVetoException ex) {
                        ex.printStackTrace();
                    }
    
                    JFrame frame = new JFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLayout(new BorderLayout());
                    frame.add(desktopPane);
                    frame.setSize(200, 200);
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    
        public class BackgroundInternalFrame extends JInternalFrame {
    
            public BackgroundInternalFrame() {
                super("Hello", true, true, true, true);
    
                setSize(100, 100);
                setLocation(10, 10);
                setVisible(true);
    
                setContentPane(new TransparentContentPane());
    
                JTable table = new JTable();
                table.setModel(new javax.swing.table.DefaultTableModel(
                        new Object[][]{
                            {null, null, null, null},
                            {null, null, null, null},
                            {null, null, null, null},
                            {null, null, null, null}
                        },
                        new String[]{
                            "Title 1", "Title 2", "Title 3", "Title 4"
                        }));
    
                JScrollPane scrollPane = new JScrollPane(table);
                setLayout(new BorderLayout());
                add(scrollPane);
    
                scrollPane.setOpaque(false);
                scrollPane.getViewport().setOpaque(false);
                table.setOpaque(false);
                table.setBackground(new Color(255, 255, 255, 0));
            }
        }
    
        public class TransparentContentPane extends JPanel {
    
            public TransparentContentPane() {
                setOpaque(false);
            }
    
            @Override
            protected void paintComponent(Graphics g) {
                Graphics2D g2d = (Graphics2D) g.create();
                g2d.setColor(getBackground());
                g2d.fillRect(0, 0, getWidth(), getHeight());
                g2d.setColor(Color.RED);
                g2d.drawLine(0, 0, getWidth(), getHeight());
                super.paintComponent(g2d); //To change body of generated methods, choose Tools | Templates.
                g2d.dispose();
            }
        }
    }
    

    Image Table

    Possibly a “simpler” solution would be to render the image directly onto the background the table. This means that the image becomes apart of the table and will scroll with it.

    This is a little tricky, as JTable#paintComponent not only fills the background, but also renders the tables content.

    enter image description here

    public class TableBackground {
    
        private BufferedImage background;
    
        public static void main(String[] args) {
            new TableBackground();
        }
    
        public TableBackground() {
            try {
                background = ImageIO.read(new File("C:/Users/swhitehead/Documents/My Dropbox/issue362.jpg"));
            } catch (IOException ex) {
                ex.printStackTrace();
            }
    
            EventQueue.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    }
    
                    JDesktopPane desktopPane = new JDesktopPane();
                    JInternalFrame ittyFrame = new JInternalFrame("Hello", true, true, true, true);
                    ittyFrame.setSize(100, 100);
                    ittyFrame.setLocation(0, 0);
                    ittyFrame.setVisible(true);
                    desktopPane.add(ittyFrame);
                    try {
                        ittyFrame.setMaximum(true);
                    } catch (PropertyVetoException ex) {
                        ex.printStackTrace();
                    }
    
                    Object[][] data = new Object[50][4];
                    for (int row = 0; row < 50; row++) {
                        for (int col = 0; col < 4; col++) {
                            data[row][col] = col + "." + row;
                        }
                    }
    
                    JTable table = new BackgroundImageTable();
                    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                    table.setModel(new javax.swing.table.DefaultTableModel(
                                    data,
                                    new String[]{
                                        "Title 1", "Title 2", "Title 3", "Title 4"
                                    }));
    
                    table.setForeground(Color.WHITE);
                    JScrollPane scrollPane = new JScrollPane(table);
                    ittyFrame.setLayout(new BorderLayout());
                    ittyFrame.add(scrollPane);
    
                    JFrame frame = new JFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLayout(new BorderLayout());
                    frame.add(desktopPane);
                    frame.setSize(200, 200);
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    
        public class BackgroundInternalFrame extends JInternalFrame {
    
            public BackgroundInternalFrame() {
                super("Hello", true, true, true, true);
    
                setSize(100, 100);
                setLocation(10, 10);
                setVisible(true);
    
                setContentPane(new TransparentContentPane());
    
                JTable table = new JTable();
                table.setModel(new javax.swing.table.DefaultTableModel(
                                new Object[][]{
                                    {null, null, null, null},
                                    {null, null, null, null},
                                    {null, null, null, null},
                                    {null, null, null, null}
                                },
                                new String[]{
                                    "Title 1", "Title 2", "Title 3", "Title 4"
                                }));
    
                JScrollPane scrollPane = new JScrollPane(table);
                setLayout(new BorderLayout());
                add(scrollPane);
    
                scrollPane.setOpaque(false);
                scrollPane.getViewport().setOpaque(false);
                table.setOpaque(false);
                table.setBackground(new Color(255, 255, 255, 0));
            }
        }
    }
    

    Sticky Viewport

    Your other option is to create a custom viewport. This allows you to render the content behind a verity of other components. This will run into the same issue’s you had before. The table and it’s background must be set to transparent.

    It also means, that with some clever work, you either have the image “stick” or “follow” the content, depending on what you need.

    public class TableBackground {
    
        private BufferedImage background;
    
        public static void main(String[] args) {
            new TableBackground();
        }
    
        public TableBackground() {
            try {
                background = ImageIO.read(new File("C:/Users/swhitehead/Documents/My Dropbox/issue362.jpg"));
            } catch (IOException ex) {
                ex.printStackTrace();
            }
    
            EventQueue.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    }
    
                    JDesktopPane desktopPane = new JDesktopPane();
                    JInternalFrame ittyFrame = new JInternalFrame("Hello", true, true, true, true);
                    ittyFrame.setSize(100, 100);
                    ittyFrame.setLocation(0, 0);
                    ittyFrame.setVisible(true);
                    desktopPane.add(ittyFrame);
                    try {
                        ittyFrame.setMaximum(true);
                    } catch (PropertyVetoException ex) {
                        ex.printStackTrace();
                    }
    
                    Object[][] data = new Object[50][4];
                    for (int row = 0; row < 50; row++) {
                        for (int col = 0; col < 4; col++) {
                            data[row][col] = col + "." + row;
                        }
                    }
    
                    JTable table = new JTable();
                    table.setForeground(Color.WHITE);
                    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                    table.setModel(new javax.swing.table.DefaultTableModel(
                                    data,
                                    new String[]{
                                        "Title 1", "Title 2", "Title 3", "Title 4"
                                    }));
    
                    JScrollPane scrollPane = new JScrollPane();
                    table.setOpaque(false);
                    table.setBackground(new Color(255, 255, 255, 0));
                    scrollPane.setViewport(new ImageViewport());
                    scrollPane.setViewportView(table);
                    ittyFrame.setLayout(new BorderLayout());
                    ittyFrame.add(scrollPane);
    
                    JFrame frame = new JFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLayout(new BorderLayout());
                    frame.add(desktopPane);
                    frame.setSize(200, 200);
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    
        public class ImageViewport extends JViewport {
    
            public ImageViewport() {
            }
    
            @Override
            protected void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (background != null) {
                    Rectangle bounds = getViewRect();
                    int x = Math.max(0, (bounds.width - background.getWidth()) / 2);
                    int y = Math.max(0, (bounds.height - background.getHeight()) / 2);
                    g.drawImage(background, x, y, this);
                }
            }
        }
    }
    

    A lot of it will come down to your actual requirements

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using SSRS 2008 R2 I have a background process that dynamically generates RDL for
i am using the following code : JDialog d=new JDialog(); JInternalFrame i=new JInternalFrame(HI,false,false,false,false); i.setPreferredSize(new
Basically, I want a Java GUI with multiple frames, so I'm using JInternalFrame ,
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Using android 2.3.3, I have a background Service which has a socket connection. There's
hi i'm using swing and in my main frame(JFrame) i want that when ever
I have built a simple interface that fills my entire JFrame. I am using
I'm using a JInternalFrame and I want to remove the dropdown in the upper
Using CRM 4, I have an entity form that contains a tab with an
Right now I am making my jinternal frames transparent using this code: double rgbConversionBackpack

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.