Tagged Questions

A Java Swing component to display a short text string or an image, or both.

learn more… | top users | synonyms

16
votes
8answers
15k views

How to add hyperlink in JLabel

Which is the best way to add a hyperlink in jLabel? I can get the view using html tags, but how to open the browser when the user clicks on it?
15
votes
2answers
5k views

How do I set a JLabel's background color?

In my JPanel, I set the background of a JLabel to a different color. I can see the word "Test" and it's blue, but the background doesn't change at all. How can I get it to show? ...
12
votes
6answers
3k views

Java swing: Multiline labels?

I want to do this: JLabel myLabel = new JLabel(); myLabel.setText("This is\na multi-line string"); Currently this results in a label that displays This isa multi-line string I want it to do this ...
11
votes
2answers
308 views

Remembering where a mouse clicked? ArrayLists? HashCodes?

Sorry guys, I deleted my APPLES and CATS example :) Here's the updated version of my question! I'm losing my sanity here. I need someone who can enlighten me. I've tried a couple of times explaining ...
8
votes
3answers
102 views

Why do cell renderers often extend JLabel?

I noticed this is common. For example DefaultListCellRenderer, DefaultTableCellRenderer, and DefaultTreeCellRenderer all use it. Also a lot of the custom cell renderers I see online use this as well. ...
8
votes
3answers
3k views

Multiline text in JLabel

How can I make the text of a JLabel extend onto another line?
7
votes
1answer
340 views

How to create a Jlabel inside JTextArea like in Facebook?

Is there a way I can create a JTextArea or JTextField with some JLabels inside it, like in this screenshot from Facebook: What I am trying to do is put some JButtons with titles like "Apple", ...
6
votes
5answers
185 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 ...
6
votes
3answers
660 views

How to disable the automatic HTML support of JLabel?

A Swing JLabel automatically interprets any text as HTML content, if it starts with <html>. If the content of this HTML is an image with invalid URL this will cause the whole GUI to hang since ...
6
votes
4answers
1k views

Draw a JButton to look like a JLabel (or at least without the button edge?)

I've got a JButton that for various reasons I want to act like a button, but look like a JLabel. It doesn't actually have to be a JLabel under the hood, I just don't want the raised button edge to ...
6
votes
5answers
3k views

make a JLabel wrap it's text by setting a max width

I have a JLabel which has a lot of text on it. Is there a way to make the JLabel have a max width so that it will wrap the text to make it not exceed this width? Thanks
6
votes
5answers
1k views

JLabel not greyed out when disabled, when HTML text displayed

How do I get a JLabel displaying a HTML string to appear greyed out (which is the behaviour of JLabels that don't display HTML text)? Is there another way than actually changing the colour myself by ...
5
votes
3answers
180 views

Is there some “Word Wrap” Property of JLabel exist?

I am displaying some text in JLabel. Basically i am generating that text dynamically and then i apply some HTML tags (e.g BR and B) to format the text. Finally i assign this formatted text to my ...
5
votes
2answers
169 views

JLabel html text ignores setFont

I've just started porting my Swing app from OS X to Windows and things are painful with JLabels. I've noticed that the font specified to setFont is ignored if the label's text is HTML (this doesn't ...
5
votes
2answers
152 views

JLabel vertical alignment not working as expected

Font font = Font("Arial", Font.BOLD, 35); JLabel label = new JLabel("57"); JPanel panel = new JPanel(); panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS)); panel.add(label); This creates a ...
5
votes
4answers
372 views

Is it possibly to create selectable hyperlink with basic Swing components in Java?

I am trying to add a hyperlink to a JPanel. I would like to make it's text blue (and underlined) and the link should be selectable (to copy some part of it). So I tried to use JLabel: yes, it allow to ...
5
votes
5answers
6k views

Newline in JLabel

How can I display a newline in JLabel? For example, if I wanted: Hello World! blahblahblah This is what I have right now: JLabel l = new JLabel("Hello World!\nblahblahblah", ...
5
votes
3answers
1k views

How do I present text vertically in a JLabel ? (Java 1.6)

I'm looking to have text display vertically, first letter at the bottom, last letter at the top, within a JLabel. Is this possible?
4
votes
1answer
69 views

How returns XxxSize from JComponent(s) added to the JLabel

how can I correctly returns XxxSize from JComponent(s) added to the JLabel 1st. figure >> lets LayoutManager works like as for JPanel, JLabel returns Size(0, 0) 2nd. figure >> added some ...
4
votes
2answers
119 views

How to draw on a JLabel?

I want to use the 2D Java API to draw on a JLabel that already has an image on it and then save the resulting edited picture. I can't find any tutorials on this specific subject, does anyone have ...
4
votes
2answers
113 views

why showing .GIF image increase memory continuously?

i am showing simple code sample. I showed an gif image in a Jlabel. When run the programme, TASK manager shows that memory is increasing continuously. Why it happens? Edited: try this code please... ...
4
votes
4answers
178 views

Two icons in a JLabel?

I have an icon in a JLabel as shown below: Is it possible to add another icon (e.g. a flag representing a country) between the color icon and the text? For example, I want to add an icon depicting ...
4
votes
2answers
124 views

Make JLabel backround transparent AGAIN

I have a JLabel that changes its background color when the mouse enters it. The problem I have is that I want the JLabel to become transparent after the mouse exits. Isn't there perhaps just a ...
4
votes
2answers
76 views

Set JLabel Alignment right-left

I have a JPanel that separated to 2 blocks, in south block (layout) I have add a JLabel, In the label I want to Insert a string with this rule: (Name, Date, Time, In/Out) If my name was written in ...
4
votes
1answer
208 views

JTable, JLabel, and its Icon (JLabel can't be customized with Icon)?

This summer is not a real summer, i thought. A cup of coffee make me feel it as a summer, tough (lol). I have a little bit naughty JTable. OMG. Below is my JTable that use my own customized ...
4
votes
1answer
87 views

Why does part of my RichJLabel text look covered/hidden?

I've been reading the Swing Hacks book and have used some of their code for the RichJLabel part. I understand what the code does, but not why some of the word is covered or looks hidden. It's not that ...
4
votes
1answer
343 views

Creating a Count Up timer to Break when puzzle is solved java

I'm trying to implement a timer based scoring system for a puzzle application i am writing. Can someone provide me with an example case of creating a JLabel or Panel in swing, containing a visibly ...
4
votes
2answers
595 views

dragging a jlabel around the screen

So I am trying to click and drag a JLabel around a JFrame. The following code allows a JLabel to be moved around the screen when the mouse is pressed / dragged at any point on the screen, but I am not ...
4
votes
5answers
3k views

Java: Linebreaks in JLabels?

I'm trying to make a Swing JLabel with multiple lines of text. It's added just fine, but the line breaks don't come through. How do I do this? Alternatively, can I just specify a maximum width for a ...
3
votes
4answers
68 views

Image won't display in JLabel

I've gone through every post I could find on this site and the Java tutorials and I still can't figure out why my code isn't working. Even when I copy/paste other peoples' code, it still doesn't ...
3
votes
3answers
93 views

Java Swing Loading Animation

I Would like to realize the following loading animation with java swing : The circle has to spin clockwise. What would be the best way to make it ? Thank you very much.
3
votes
3answers
80 views

How to change a JLabel dynamically

I have one JLabel and one button, the JLabel displays the number of times the button has been pressed, however, I cant figure how to update the JLabel displaying the number of button presses. import ...
3
votes
1answer
98 views

How to display JLabel text for 1 second?

I am wanting my error messages to display in a JLabel temporarily, then set the text back to "". But instead it looks like it just skips over setting the message. I've stepped through the code and ...
3
votes
4answers
155 views

JLabel center drawString() text for varying size(s)

My code for custom button is: public class GreyButton extends JLabel { private int ButtonWidth, ButtonHeight; String ButtonText; public ...
3
votes
2answers
75 views

Why does JLabel not display '/' when it is the first character?

I have an swing panel with a JLabel inside of it. The JLabel looks like this: new JLabel("<html>/Foo <br/>/Bar <br/>/Foo<br/>/Bar</html>"); However it displays in the ...
3
votes
5answers
201 views

Centering a JLabel on a JPanel

I'm using the NetBeans GUI builder to handle my layout (I'm terrible with LayoutManagers) and am trying to place a simple JLabel so that it is always centered (horizontally) inside its parent JPanel. ...
3
votes
1answer
98 views

Java resizing center of image

I was looking something else up the other day and feel like I remember running across a way to resize an image but keeping an area along the sides of the image unaltered so that the rounded edges of ...
3
votes
1answer
84 views

Problem using image from other local package

I have a JLabel in the frame which I want to have different images when clicked upon different buttons. Achieving this was easy. Here is the code ImageIcon icon = new ImageIcon (img); ...
3
votes
2answers
128 views

Can we combine 2 font styles together in Java?

I am trying to change the font of a JLabel so it is both BOLD and ITALIC, but it seems there's no static field defined to do so. How can we combine two styles so we can have a bold, italic font? This ...
3
votes
2answers
139 views

Background with getResourceAsStream(“path”)

I am having a folder structure like this. Project/src/folder/folder/folder/xyz.java /img/background.jpg And I want to put the background.jpg into a JPanel in xyz.java. Just for the ...
3
votes
1answer
362 views

Custom JLabel icon

I want to use java JLabel with an Icon in custom size on my GUI. like this : I used this code to change size of original Icon : ImageIcon imageIcon = (ImageIcon) jLabel1.getIcon();// new ...
3
votes
3answers
742 views

JLabel transparency problem

I have a dark-gray JPanel with a JLabel on it. I set new Color(0, 0, 0, .5f) (tranparent) as the background of the JLabel and I change the text several times using a button. The problem is, everytime ...
3
votes
2answers
502 views

JLabel on change text event

How I can retrive the event on a JLabel when change the text inside?? I have a JLabel and when change the text inside I have to update other field.
3
votes
3answers
1k views

How to highlight part of a JLabel?

Before any one suggests HTML, I explain later why thats not an option here. I have a table that contains a column with text cells in it. I need to be able to highlight some of the text in each cell. ...
3
votes
2answers
386 views

Fade/Redraw/Modify ImageIcon on click in SWING JLabel on the fly

I want a JLabel with an Icon to look "clicked", when mouse is clicked on the Label. The Label contains an ImageIcon. Instead of changing the icon to another one, I want to redraw the ImageIcon with ...
3
votes
3answers
549 views

MouseEvents for a JTabbedPane Tab component are not bleeding through

I have a JTabbedPane with a custom tab component. That component contains a JLabel (To display the tab title) and a JButton (A close button). When I change the text in the JLabel the JLabel stops ...
3
votes
3answers
601 views

JLabel with separate text and icon background colours

I have a simple Jlabel element with text and icon setting the background changes the full label colour. I want to be able to only render the background colour on the text section of the label, ie ...
3
votes
2answers
4k views

Rotate a Swing JLabel

I am currently trying to implement a Swing component, inheriting from JLabel which should simply represent a label that can be oriented vertically. Beginning with this: public class RotatedLabel ...
2
votes
3answers
24 views

Create JLabel in actionPerformed in Java

Hi I have a JButton that I want to program so that when pressed, a new JLabel is displayed on screen. I have added the JLabel to the frame and it is visible. It shows outside of actionPerformed but ...
2
votes
1answer
42 views

setAlignmentY not centering JLabel in BorderLayout

new to java and brand new to the site. I have a JLabel added to the center panel of a BorderLayout. I would like the JLabel to be centered in the panel; setAlignmentX appears to work, but ...

1 2 3 4 5 7