码迷,mamicode.com
首页 > 其他好文 > 详细

使用JTextArea示例

时间:2014-04-29 09:33:45      阅读:544      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

相对于JLabel显示提示文字,JTextArea有一个先天优势:文字可以拷贝出来。经过下面设置它也能在外观上和JLabel一致。

代码如下:

mamicode.com,码迷
JTextArea txtArea=new JTextArea(5,20);// 初始化
// 设置文字
txtArea.setText("We needto update personal business forecast data in staffing plan to get the budgetupdates. Due to the complexities of Staffing Plan sheet, it is necessary tohave one tool, which will help to inject the forecasted data into the staffingplan sheet automatically. The tool will thus, save time of a financial analystto get the budget on time.");
txtArea.setFont(new Font("Arial",Font.PLAIN,14));// 设置字体
txtArea.setLineWrap(true);// 自动换行
txtArea.setWrapStyleWord(true);// 根据单词封装换行字符
txtArea.setBackground(this.getBackground());// 取所在面板的背景色
txtArea.setPreferredSize(new Dimension(800, 30));// 设置宽度
mamicode.com,码迷

效果如下:

mamicode.com,码迷

注意以上图文无关。

使用JTextArea示例,码迷,mamicode.com

使用JTextArea示例

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/xiandedanteng/p/3698463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!