Tagged Questions

10
votes
3answers
1k views

Sizing and Capacity Planning Tips and How-to

I am often asked to perform sizing and capacity planning for our clients. When our clients buy our products (basically J2EE web applications), they often ask what hardware they will need to run those ...
6
votes
5answers
188 views

find out if text of JLabel exceeds label size

In java when the text of the JLabel could not be displayed due to lack of space the text is truncated and "..." is added in the end. How can I easily find out if currently JLabel displays full text ...
5
votes
2answers
263 views

Java Swing getSize() returns inaccurate value?

To put this most simply, I am trying to use the width of a component to set the size of its parent container. However the width being returned for the component is off by about 4 pixels. More ...
1
vote
1answer
509 views

Java Stopping JApplet Components from Resizing based on Applet Size

Creating a JApplet I have 2 Text Fields, a button and a Text Area. private JPanel addressEntryPanel = new JPanel(new GridLayout(1,3)); private JPanel outputPanel = new JPanel(new GridLayout(1,1)); ...
1
vote
5answers
1k views

How to fix the size of a Java heap

I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the heap. But, I have a problem at hand ...
1
vote
2answers
872 views

JTextArea - very small size with long text

I'm using a JTextArea to display a long text JTextArea _definition = new JTextArea(5, 50); with word-wrap _definition.setLineWrap(true); _definition.setWrapStyleWord(true); embedded in a ...
0
votes
2answers
128 views

Opening a new jframe with the same properties as the closed one

How can I have the newly open jframe have the same properties like Size and position on screen. Thanks