- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java单机考试系统练习
package 考试系统;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class Start1 extends Thread implements ActionListener,Runnable,WindowListener{
JFrame jf = new JFrame(考试系统);
JButton j1 = new JButton(倒计时);
static JTextField j3 = new JTextField(倒计时);
JComboBox j7 = new JComboBox ();
JButton j2 = new JButton(得分);
JTextField j4 = new JTextField(得分);
JTextField j6 = new JTextField(答案);
JButton j5 = new JButton(答案);
JTextArea j = new JTextArea ( 主界面);
String str = ;
String str1 = ;
String str2 = ;
JButton shang=new JButton(上一题);
JButton xia=new JButton(下一题);
JButton jiao=new JButton(交卷);
String titli=;
int score = 0;
int flag=0;
String[] ti;
Reader fileIn=null;
BufferedReader bis;
File f;
File p;
JRadioButton na =new JRadioButton(A);
JRadioButton na1 =new JRadioButton(B);
JRadioButton na2 =new JRadioButton(C);
JRadioButton na3 =new JRadioButton(D);
JRadioButton na4 =new JRadioButton();
ArrayList ar = new ArrayList();
HashMap map =new HashMap();
int i =0;
String s1 = ;
String s2 = ;
String s3=;
public Start1(){
jf.setSize(800, 800);
jf.setVisible(true);
BorderLayout bro = new BorderLayout();
jf.setLayout(bro);
JPanel of1 = new JPanel();
of1.setSize(2, 2);
of1.setVisible(true);
jf.add(of1,BorderLayout.NORTH);
文档评论(0)