| | |
JTextArea
Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved |
Hello,
i'm trying to make a a list of items in a Text Area, something like this:
apple 2 22
banana 31 1
orange 1 3
i want to it o be organized such that the numbers are in one column, and thats not working with me since the names of fruit have different lengths.
i tried to use insert ( str , pos ); method, but it didnt work well for me.
is there a method that might help?
i'm trying to make a a list of items in a Text Area, something like this:
apple 2 22
banana 31 1
orange 1 3
i want to it o be organized such that the numbers are in one column, and thats not working with me since the names of fruit have different lengths.
i tried to use insert ( str , pos ); method, but it didnt work well for me.
is there a method that might help?

•
•
•
•
and i cant even post them under each other in my my post here as well.
i hope u got what i'm asking for?
try it like this :
Java Syntax (Toggle Plain Text)
"apple\t2\t22" "banana\t31\t1" "orange\t1\t3"
escape sequence (valid ones are \b \t \n \f \r \" \' \\ )
Edited :
java Syntax (Toggle Plain Text)
textAreaObj.setText("apple\t2\t22\nbanana\t31\t1\norange\t1\t3");
Output:
Java Syntax (Toggle Plain Text)
apple 2 22 banana 31 1 orange 1 3
Regards,
Last edited by puneetkay; Jan 4th, 2009 at 7:33 am.
Puneet Kalra
www.PuneetK.com
Sun Certified Java Programmer
Admin of Pikk - Object Relational Mapping Framework
www.PuneetK.com
Sun Certified Java Programmer
Admin of Pikk - Object Relational Mapping Framework
![]() |
Similar Threads
- JTextArea & Font Color (Java)
- JTextArea problems (Java)
- Move data from jTextField to jTextArea (Java)
- JTextArea question (Java)
- First time using JLabel and JTextArea. Please help!!! (Java)
- Printing JPanel containing JLable, JTable, JButton, JTextPane, JTextArea (Java)
- get cursor position in a JTextArea (Java)
Other Threads in the Java Forum
- Previous Thread: need open sourse cell phone code
- Next Thread: How to.. "access-back" class members?
| Thread Tools | Search this Thread |
android api applet application applications array arrays automation balls bank binary bluetooth business chat class classes clear client code codesnippet collections component database db defaultmethod development dice dragging draw ebook eclipse error event exception formatingtextintooltipjava fractal game givemetehcodez graphics gui hql html ide image infinite input integer invokingapacheantprogrammatically j2me java javaprojects jni jpanel julia linux list loop looping map method methods mobile mysql netbeans newbie numbers openjavafx oracle parameter php print problem program programming project recursion repositories scanner screen scrollbar server set size sms sort sorting sql sqlserver state storm string sun superclass swing swt text-file threads time tree windows






