How do I change the size of the vertical grid lines of a JTable?
Ex:
jTable.setRowHeight(30);
This method changes the width of the line.
Is there any other similar to this that changes the vertical grid width of the columns?
Below an image to illustrate what I want to change the width.
Edit:
I'mdoingitanywaybutitdidnotworkoutwhatI'mdoingwrong?
publicclassGuiPrincipalextendsJFrame{//variaveisparausodaJTableprivateJTabletable;privatefinalStringcolunas[]={"Nome:", "Idade:", "Sexo:"};
private final String dados[][] = {
{"Jack", "19", "Masculino"},
{"Eddie", "56", "Masculino"},
{"Gina", "34", "Feminino"},
{"Klaus", "18", "Masculino"},
{"Erika", "20", "Feminino"},
{"Roberto", "29", "Masculino"},
{"Maria", "30", "Feminino"}};
/*Construtor da classe ,
antes de executar o metodo main(),
irá construir o JFrame e a JTable*/
public GuiPrincipal() {
setLayout(new FlowLayout());//tipo de layout
setSize(new Dimension(700, 300));//tamanho do Formulario
setLocationRelativeTo(null);//centralizado
setTitle("Exemplo JTable");//titulo
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//setando a ação padrão de fechamento do Formulário,
// neste caso irá fechar o programa
//instanciando a JTable
table = new JTable(dados, colunas);
table.setPreferredScrollableViewportSize(new Dimension(700, 300));//barra de rolagem
table.setFillsViewportHeight(true);
//adicionando a tabela em uma barra de rolagem, ficará envolta , pela mesma
JScrollPane scrollPane = new JScrollPane(table);
table.setDefaultRenderer(String.class, new Renderer());
add(scrollPane);
}
//este é o método onde é executado nosso programa
public static void main(String[] args) {
new GuiPrincipal().setVisible(true);
}
}
And below is the renderer class.
public class Renderer extends DefaultTableCellRenderer {
javax.swing.border.Border padding = BorderFactory.createEmptyBorder(50, 50, 50, 50);
@Override
public Component getTableCellRendererComponent(JTable table,
Object value, boolean isSelected, boolean hasFocus,
int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus,
row, column);
setBorder(BorderFactory.createCompoundBorder(getBorder(), padding));
return this;
}
}