当前位置: 技术问答>java相关
JTextField内容获取
来源: 互联网 发布时间:2015-10-04
本文导语: 我想对一些JTextField和其他一些组件进行ActionListen,然后把这些组件的文件内容写一个readme。txt中,谁能帮我设计出一个例子来,大致的程序模型是这样的,请大家帮我把他的内容完善好吗? public JTextField order,regionNum,...
我想对一些JTextField和其他一些组件进行ActionListen,然后把这些组件的文件内容写一个readme。txt中,谁能帮我设计出一个例子来,大致的程序模型是这样的,请大家帮我把他的内容完善好吗?
public JTextField order,regionNum,FC,objectID,curFlag,coordLen,
attribLen,attrinNum,coord,attribDataLen,attribData,desLen;
public JLabel orderLabel,layerLabel,shapeTypeLabel,
shapeTypeFigureLabel,regionNumLabel,
FCLabel,objectIDLabel,curFlagLabel,
coordLenLabel,attribLenLabel,attrinNumLabel,
coordLabel,attribDataLenLabel,attribDataLabel,
desLenLabel,describeLabel;
public JTextArea describe;
pulic JComboBox layerBox,shapeTypeBox,shapeTypeFigureBox;
public JButton continiue,cancel,quit;
实现的功能是continiue按扭可以将各个输入框里的内容写入到文件readme.txt中。
象JComboBox里的控件可以用1,2,3,4,5,6来代替。
public JTextField order,regionNum,FC,objectID,curFlag,coordLen,
attribLen,attrinNum,coord,attribDataLen,attribData,desLen;
public JLabel orderLabel,layerLabel,shapeTypeLabel,
shapeTypeFigureLabel,regionNumLabel,
FCLabel,objectIDLabel,curFlagLabel,
coordLenLabel,attribLenLabel,attrinNumLabel,
coordLabel,attribDataLenLabel,attribDataLabel,
desLenLabel,describeLabel;
public JTextArea describe;
pulic JComboBox layerBox,shapeTypeBox,shapeTypeFigureBox;
public JButton continiue,cancel,quit;
实现的功能是continiue按扭可以将各个输入框里的内容写入到文件readme.txt中。
象JComboBox里的控件可以用1,2,3,4,5,6来代替。
|
每个控件都写了一个例子,别的都一样的,写了没什么意思。希望给分`~~
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.*;
import java.io.*;
class Swin extends JFrame implements ActionListener
{
private JTextField jtf=new JTextField("JTextField");
private JLabel jl=new JLabel("JLabel");
private JTextArea jta=new JTextArea("JTextArea");
private JComboBox jcb;
private JButton jb=new JButton("JButton");
private Container container;
public Swin()
{
Vector v=new Vector();
for (int n=1;n
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.*;
import java.io.*;
class Swin extends JFrame implements ActionListener
{
private JTextField jtf=new JTextField("JTextField");
private JLabel jl=new JLabel("JLabel");
private JTextArea jta=new JTextArea("JTextArea");
private JComboBox jcb;
private JButton jb=new JButton("JButton");
private Container container;
public Swin()
{
Vector v=new Vector();
for (int n=1;n