Results 1 to 5 of 5
- 03-15-2009, 08:55 AM #1
Member
- Join Date
- Feb 2009
- Posts
- 50
- Rep Power
- 0
i want to display decimal values in frame window
dear sir,
i am created a frame window in java swings.i need to display decimal values in a frame window. here is the code.pls any body can correct my code.
JFrame frame=new JFrame();
frame.setVisible(True);
frame.setSize(200,200);
System.out.println("value" + ":" + Double.Parsedouble(value1));
this will display decimal value in console application,same value should be displayed in frame window.
thanks
santhosh
- 03-15-2009, 10:10 AM #2
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
println() display the string you define on the console. Not on the frame. If you want to display something on the frame, add text on the label and add that label on the frame.
Better if you can look at the Swing tutorial on the Suns website.
How to Use Labels.
- 03-16-2009, 07:33 AM #3
Senior Member
- Join Date
- Dec 2008
- Posts
- 526
- Rep Power
- 0
I am kind today :)
Here you go...
frame.getContentPane().add(new JLabel(String.valueOf(value1)));
- 03-16-2009, 08:22 AM #4
Read the API for JOptionPane
db
- 03-16-2009, 09:07 AM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Similar Threads
-
get percentage formatting to display 2 decimal places
By gotenks05 in forum New To JavaReplies: 5Last Post: 03-03-2009, 04:57 PM -
How to display an int or a double with two decimal places
By mcollins in forum New To JavaReplies: 4Last Post: 03-03-2009, 12:43 PM -
passing values from main page to pop up window
By vicky in forum JavaServer Pages (JSP) and JSTLReplies: 4Last Post: 12-29-2008, 03:06 PM -
how disable the display of close button on the frame
By kalanidhi in forum New To JavaReplies: 6Last Post: 11-19-2008, 09:51 AM -
Read/Write of components of frame window
By Harish kumara M in forum AWT / SwingReplies: 0Last Post: 09-17-2008, 08:14 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks