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

  • SEARCH
  • Home
  • 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 8667659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:01:14+00:00 2026-06-12T18:01:14+00:00

JSplitPane seems to add a border to any Component added to it. This is

  • 0

JSplitPane seems to add a border to any Component added to it.

This is most visible with nested JSplitPanes – e.g.:

public class JSplitPaneToy {

  public static void main(String[] args) {
    JSplitPane sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, 
      makePanel(), makePanel());
    sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);
    sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);
    sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);

    JFrame frame = new JFrame("JSplitPane Toy");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(sp);
    frame.pack();
    frame.setVisible(true);
  }

  private static JScrollPane makePanel() {
    JScrollPane pane = new JScrollPane(new JTable(
      new Object[][]{{0, 1, 2}, {1, 2, 3}, {2, 3, 4}}, new Object[]{1, 2, 3}));
    pane.setPreferredSize(new Dimension(200, 100));
    return pane;
  }
}

i.e. each subsequent nested component appears to be set further back – i.e. there is some form of shadow border being added.

  • Why is this border being added? (Is this actually a border being added…?)
  • How can I prevent this ‘border’ from being added?
  • 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-12T18:01:15+00:00Added an answer on June 12, 2026 at 6:01 pm

    If you want to drop those borders on all JSplitPane, you can change the defaults of the UI like this. However, I usually try not to mess with UI-defaults.

    import java.awt.Dimension;
    
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JSplitPane;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    
    public class JSplitPaneToy {
    
        public static void main(String[] args) {
            UIManager.getDefaults().put("SplitPane.border", BorderFactory.createEmptyBorder());
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    new JSplitPaneToy().initUI();
                }
            });
        }
    
        public void initUI() {
            JSplitPane sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), makePanel());
            sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);
            sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);
            sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT, makePanel(), sp);
    
            JFrame frame = new JFrame("JSplitPane Toy");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setContentPane(sp);
            frame.pack();
            frame.setVisible(true);
        }
    
        private JScrollPane makePanel() {
            JScrollPane pane = new JScrollPane(new JTable(new Object[][] { { 0, 1, 2 }, { 1, 2, 3 }, { 2, 3, 4 } }, new Object[] { 1, 2, 3 }));
            pane.setPreferredSize(new Dimension(200, 100));
            return pane;
        }
    }
    

    You may want to have a look at the JXMultiSplitPane of the SwingX project, instead of nesting so many splitpanes.

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

Sidebar

Related Questions

I have a JSplitPane with a vertical split. The top component is a table
any way to set custom cursor from image for a jscrollpane in a jsplitpane
Can someone point to good delphi component that is an analogue for java JSplitPane.
This JScrollPane based window is a top part of the JSplitPane . getBounds() ,
I'm trying to set the divider location of a JSplitPane but it seems not
Here is where the GUI is drawn(note, the class extends JFrame). public Cache() {
I have a JSplitPane. i want to add background image to the left side
JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, scrollPane , scrollPane2); I want to do very trivial
I have a vertically split JSplitPane and when I move the divider down, it
I have created a divider in JSplitPane . I am unable to set the

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.