使用JTextArea示例

简介:

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

代码如下:

复制代码
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));// 设置宽度
复制代码

效果如下:

注意以上图文无关。






本文转自张昺华-sky博客园博客,原文链接:http://www.cnblogs.com/xiandedanteng/p/3698463.html,如需转载请自行联系原作者



相关文章
|
6月前
|
网络性能优化 调度 网络虚拟化
配置HQoS示例
HQoS简介 HQoS通过多级队列进一步细化区分业务流量,对多个用户、多种业务等传输对象进行统一管理和分层调度,在现有的硬件环境下使设备具备内部资源的控制策略,既能够为高级用户提供质量保证,又能够从整体上节约网络建设成本。 交换机的HQoS主要通过流队列和用户队列实现。
107 7
|
3月前
|
搜索推荐
示例
【8月更文挑战第27天】示例。
30 2
|
6月前
|
传感器 数据处理
示例三、光照度测试仪
示例三、光照度测试仪
54 1
一个完整的 ParentDataWidget 示例
一个完整的 ParentDataWidget 示例
124 0
一个完整的 ParentDataWidget 示例
|
Java Spring 网络安全
SpringHttpInvoker解析1-使用示例
HTTP invoker是一个新的远程调用模型,作为Spring框架的一部分,来执行基于HTTP的远程调用(让防火墙可以接受),并使用Java的序列化机制。 服务端 定义服务接口UserService import java.
843 0
|
XML Java 数据格式