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.
我想String在 a 中插入 a JTextField。就像是-
String
JTextField
myTextField.insert(text, position);
怎么做到呢?有什么简单的方法可以做到这一点吗?
你可以这样做——
jTextField.setText("This swing."); jTextField.getDocument().insertString(5, "is", null);
并且jTextField会显示——
jTextField
这是摇摆。