Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you run the small sample below you'll see a border around the center region. I'm not sure why this border is showing. It happens when a JTable is in a JScrollPane. I tried various things to remove it but so far no luck. A JTable without the JScrollPane shows no border. See sample below. TIA.

public class TestScrollPane extends JFrame {

public static void main(String[] args) {
    JFrame frame = new TestScrollPane();
    JPanel panel = new JPanel();
    JTable table = new JTable();

    panel.setLayout(new BorderLayout());
    panel.add(new JLabel("NORTH"), BorderLayout.NORTH);
    panel.add(new JLabel("SOUTH"), BorderLayout.SOUTH);

    JScrollPane sp = new JScrollPane(table);
    // None of these have any effect
    sp.setBorder(null); 
    sp.getInsets().set(0,0,0,0);
    sp.setViewportBorder(null);
    sp.getViewport().setBorder(null);
    sp.getViewport().getInsets().set(0,0,0,0);
    sp.getViewport().setOpaque(true);

    panel.add(sp, BorderLayout.CENTER);
    // Adding the table alone shows no border
    //panel.add(table, BorderLayout.CENTER);
    frame.add(panel);

    frame.setVisible(true);
}

public TestScrollPane() throws HeadlessException {
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setMinimumSize(new Dimension(100, 100));
}

}

share|improve this question
2  
Instead of setting null border, have you try BorderFactory.createEmptyBorder() ? – sly7_7 Jul 26 '10 at 9:36
Also, don't neglect to pack() the frame. – trashgod Jul 26 '10 at 9:49

3 Answers

up vote 15 down vote accepted

Use BorderFactory.createEmptyBorder() instead of null...

by using:

sp.setBorder(createEmptyBorder());

it works.

Your main method becomes:

public static void main(String[] args) {
    JFrame frame = new TestScrollPane();
    JPanel panel = new JPanel();
    JTable table = new JTable();

    panel.setLayout(new BorderLayout());
    panel.add(new JLabel("NORTH"), BorderLayout.NORTH);
    panel.add(new JLabel("SOUTH"), BorderLayout.SOUTH);

    JScrollPane sp = new JScrollPane(table);
    sp.setBorder(BorderFactory.createEmptyBorder());
    panel.add(sp, BorderLayout.CENTER);
    frame.add(panel);

    frame.setVisible(true);
}
share|improve this answer
Thanks! Looks fine now. :) – sproketboy Jul 26 '10 at 9:52
1  
Cool :). I think (but not sure) the default behavior of swing components is to have line border. So the BorderFactory class is your friend to customize them :) – sly7_7 Jul 26 '10 at 10:08
Very good answer! Fixed my problem as well!! – Handsken Oct 4 '11 at 11:42

Interestingly the border disappears when you remove this line:

sp.setBorder(null);
share|improve this answer
Not for me with windows XP. Maybe it's a platform issue. – sproketboy Jul 26 '10 at 9:52

I think the proper fix is to set the border on the viewportView to 'null'.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.