java中JTextArea中的参数表示什么意思?
3个回答
展开全部
两个参数分别表示行和列;
JTextArea是多行文本容器,可以实现对文本的自动换行。
用setText(String text)方法向JTextArea内写入文字,再用getText方法可以得到这里的文字。
setLineWrap(true)方法为自动换行,既当文字比控件的宽度还长时会自动换行。
setCaretPosition(0)将光标定往到容器的第一个字符处,这个方法一般是当读取大量的文字后能让容器从头开始显示文字,否则容器会将光标定位在最后一个个字符处,显示的当然也是文字的未尾。
JTextArea是多行文本容器,可以实现对文本的自动换行。
用setText(String text)方法向JTextArea内写入文字,再用getText方法可以得到这里的文字。
setLineWrap(true)方法为自动换行,既当文字比控件的宽度还长时会自动换行。
setCaretPosition(0)将光标定往到容器的第一个字符处,这个方法一般是当读取大量的文字后能让容器从头开始显示文字,否则容器会将光标定位在最后一个个字符处,显示的当然也是文字的未尾。
展开全部
JTextArea
public JTextArea(int rows,
int columns)
Constructs a new empty TextArea with the specified number of rows and columns. A default model is created, and the initial string is null.
Parameters:
rows - the number of rows >= 0
columns - the number of columns >= 0
Throws:
IllegalArgumentException - if the rows or columns arguments are negative.
行 和 列
public JTextArea(int rows,
int columns)
Constructs a new empty TextArea with the specified number of rows and columns. A default model is created, and the initial string is null.
Parameters:
rows - the number of rows >= 0
columns - the number of columns >= 0
Throws:
IllegalArgumentException - if the rows or columns arguments are negative.
行 和 列
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
长 宽 ·····
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询