如何在 Java 中向 JTextField 添加填充?
awtjavaobject oriented programmingprogrammingswing
JTextField 是 JTextComponent 类的子类,它是允许用户以 单行格式 输入文本值的最重要的组件之一。当我们尝试在其中输入一些输入时,JTextField 类将生成 ActionListener 接口。JTextField 类的重要方法是 setText()、getText()、setBorder()、setEnabled() 等。
我们可以使用 JTextComponent 类的 setMargin(Insets s) 向 JTextField 添加填充。
语法
public void setMargin(Insets m)
示例
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class JTextfieldPaddingTest extends JFrame { private JTextField jtf; public JTextfieldPaddingTest() { jtf = new JTextField("Welcome to Tutorials Point"); jtf.setMargin(new Insets(10, 10, 10, 10)); add(jtf, BorderLayout.NORTH); setSize(400, 300); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setLocationRelativeTo(null); setVisible(true); } public static void main(String[] args) { new JTextfieldPaddingTest(); } }