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.
我想知道是否有可能以编程方式知道一行可以包含多少个字符。我已经搜索过但没有发现任何有用的..
基本上我想用相同的字符填充一行,但只有一整行。
提前致谢 ;)
您可以改为使用 JTextField 像这样...
JTextField text_field = new JTextField(25);
在这里您可以看到我们已预设该字段最多可容纳 25 个字符
在我的脑海中,但也许其中之一
getColumns() getColumnWidth() getRows() getRowWidth()
将工作?如果要填充该行,只需使用 for 循环和 insert(str, index) 方法。