Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set JTextArea size?

I want to set a fixed size for JtextArea within JOptionPane

public static void main(String[] args) {

        JTextArea headersTxt = new JTextArea();
        for (int i = 0 ; i < 50 ; i ++ ) {
            headersTxt.append("test \n") ;
        }
        JScrollPane scroll = new JScrollPane(headersTxt); 
        scroll.setSize (300,600) ;  // this line silently ignored
        int test = JOptionPane.showConfirmDialog(null,  scroll,"test",  JOptionPane.OK_CANCEL_OPTION) ;

    }

However, the above code ignores scroll.setSize (300,600) ;

It works fine but the size is not fixed . What is the problem with scroll.setSize (300,600) ; ?

like image 624
Borat Sagddiev Avatar asked Mar 09 '14 02:03

Borat Sagddiev


1 Answers

Because each system can render fonts differently, you should avoid using pixel measurements where possible

Instead, provide the rows and columns you want to display

JTextArea ta = new JTextArea(5, 20);
like image 78
MadProgrammer Avatar answered Sep 30 '22 15:09

MadProgrammer