Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个JLabelwith ImageIcon,我通过使用 in 中的setIcon()函数来放置它JLabel。然后ImageIcon出现,坐在我的文本的左侧JLabel。是否有可能ImageIcon在文本的右侧?
JLabel
ImageIcon
setIcon()
假设标签称为“标签” - 然后使用:
label.setHorizontalTextPosition(JLabel.LEFT);
那应该行得通。