How do I align text within a JTextField?
问题 I have a JTextField with rather big bounds, the text however does not behave like I want it to. _________________ | | | | |text | | | |_________________| how would i do it so my text aligns like this _________________ |text | | | | | | | |_________________| Edit: Using JTextArea fixed my problem. Thank you. 回答1: JTextArea aligns to the top. Or use a JLabel : JLabel myLabel = new JLabel("my text"); and the call: myLabel.setHorizontalAlignment(SwingConstants.LEFT); myLabel.setVerticalAlignment