博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java eleven文本组件
阅读量:6252 次
发布时间:2019-06-22

本文共 3987 字,大约阅读时间需要 13 分钟。

hot3.png

一个应用程序所有输入功能的界面几乎都是由文本组件接收用户输入的。

1、文本框组件JTextField

用来显示或编辑一个文本

构造方法 说明
JTextField() 构造一个默认的文本框组件
JTextField(String text) 包含指定字符串
JTextField(int columns) 指定列数
JTextField(String text,int columns) 指定列数并包含文本

example

 package Eleven;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JTextField;import java.awt.Container;import java.awt.FlowLayout;public class JTextFieldD extends JFrame{ private JTextField jtextField1; private JTextField jtextField;  public JTextFieldD(){  super();  final FlowLayout flowLayout = new FlowLayout();  flowLayout.setAlignment(FlowLayout.LEFT);  getContentPane().setLayout(flowLayout);  setTitle("文本演示框");  setBounds(100,100,412,166);  setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  Container container = getContentPane();  JPanel p1 = new JPanel(new FlowLayout());      p1.add(new JLabel("name:"));  jtextField = new JTextField();  p1.add(jtextField);      p1.add(new JLabel("sex"));  jtextField1 = new JTextField(4);  p1.add(jtextField1);  container.add(p1);  setVisible(true); }  public static void main(String[] args){  new JTextFieldD();   }}

094907_U1l0_2653987.jpg

2、密码框组件JPasswordField

JPasswordField提供一个setEchoChar()方法,设置密码框的回显字符

passwordField().setEchoChar("*");

 

构造方法 说明
JPasswordField() 构造一个默认的密码框组件
JPasswordField(String text) 包含指定字符
JPasswordField(int columns) 指定列数
JPasswordField(String text,int columns) 指定字符和列数

example

package Eleven;import javax.swing.JFrame;import java.awt.FlowLayout;import javax.swing.JLabel;import javax.swing.JPasswordField;public class JPasswordFieldD extends JFrame{ public JPasswordFieldD(){  super();  getContentPane().setLayout(new FlowLayout());  setBounds(100,100,192,67);  setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    final JLabel label = new JLabel();  label.setText("Password: ");  getContentPane().add(label);  JPasswordField passwordField = new JPasswordField("1225");  //void javax.swing.JPasswordField.setEchoChar(char c)设置回显字符  passwordField.setEchoChar('*');  passwordField.setColumns(10);//设置密码框列数  getContentPane().add(passwordField);  setVisible(true); } public static void main(String[] args){  JPasswordFieldD frame = new JPasswordFieldD();  frame.setVisible(true); }}

095015_3bv7_2653987.jpg

3、文本域组件JTextArea

在程序中用于接收用户的多行文字输入

 

Method Describle
JTextArea() 空文本域
JTextArea(String text) 包含文本内容
JTextArea(String text,int columns) 包含文本内容指定列数

example

package Eleven;import javax.swing.JFrame;import javax.swing.JTextArea;import java.awt.BorderLayout;import javax.swing.JLabel;import javax.swing.JScrollPane;import javax.swing.JPanel;import java.awt.FlowLayout;import javax.swing.JButton;public class JTextAreaD extends JFrame{ private JTextArea textArea; public JTextAreaD(){  super();  final BorderLayout borderLayout = new BorderLayout();  getContentPane().setLayout(borderLayout);  setBounds(100,100,231,190);  setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    final JLabel label = new JLabel("input your comment");//创建标签组件  getContentPane().add(label,BorderLayout.NORTH);//添加标签到窗体顶部    final JScrollPane scrollPane = new JScrollPane();//创建滚动面板  textArea = new JTextArea("\n\nI love this book\n\n");  //void javax.swing.JTextArea.setLineWrap(boolean wrap)  textArea.setLineWrap(true);//设置文本自动换行  //void javax.swing.JScrollPane.setViewportView(Component view)  scrollPane.setViewportView(textArea);//设置滚动面板管理文本域  getContentPane().add(scrollPane,BorderLayout.CENTER);//添加滚动面板到窗体    final JPanel panel = new JPanel();  //布局管理器  final FlowLayout flowLayout = new FlowLayout(FlowLayout.CENTER,20,2);  panel.setLayout(flowLayout);//设置面板布局管理器  /*void java.awt.Container.add(Component comp, Object constraints)   * Parameters:  comp the component to be added  constraints an object expressing layout constraints   for this component*/  getContentPane().add(panel,BorderLayout.SOUTH);//添加面板到窗体底部  panel.add(new JButton("OK"));//添加按钮到面板  panel.add(new JButton("Close"));  setVisible(true); } public static void main(String[] args){   new JTextAreaD();   }}

095509_MIUH_2653987.jpg

转载于:https://my.oschina.net/doudoulee/blog/634918

你可能感兴趣的文章
202702算法_二分法查找
查看>>
Win10 UWP开发实现Bing翻译
查看>>
各种不同类型的类
查看>>
mvc4 -@Html.Partial,@Html.RenderPartial
查看>>
windows2012 r2 提高网速方法
查看>>
调试R代码中出现的常用的函数
查看>>
JavaWeb 之 AJAX
查看>>
十、spark graphx的scala示例
查看>>
探秘SpringAop(一)_介绍以及使用详解
查看>>
查询指定时间内审核失败的事件日志
查看>>
problem-solving-with-algorithms-and-data-structure-usingpython(使用python解决算法和数据结构) -- 算法分析...
查看>>
springmvc流程
查看>>
BAT涉足汽车产业后对汽车后市场的影响是什么?
查看>>
LeetCode:Remove Nth Node From End of List
查看>>
删除链表的第 n 个结点
查看>>
drawable(1、canvas)
查看>>
Java过滤器,SpringMVC拦截器之间的一顺序点关系
查看>>
Git学习笔记(七)分支标签管理
查看>>
Vue学习计划基础笔记(四) - 事件处理
查看>>
python中的浅拷贝与赋值不同
查看>>