java eclipse-java程序功能设计分析和程序基本组成框架结构 大神们帮帮忙

问题描述

java程序功能设计分析和程序基本组成框架结构 大神们帮帮忙

package com.mingrisoft.ballot;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.*;

class Candidate extends JCheckBox { // 定义内容类,该类继承JCheckBox类
int len = 0;

Candidate(String name, Icon icon) { // 该类包含有两个参数
    super(name, icon);
}

public int getBallot(String name) {
    File file = new File("C://count.txt"); // 创建文件对象
    FileReader fis;
    try {
        if (!file.exists()) // 如果该文件不存在
            file.createNewFile(); // 新建文件
        fis = new FileReader(file);
        BufferedReader bis = new BufferedReader(fis); // 创建BufferedReader对象
        String str[] = new String[3];
        String size;
        int i = 0;
        while ((size = bis.readLine()) != null) { // 循环读取文件内容
            str[i] = size.trim(); // 去除字符串中的空格
            if (str[i].startsWith(name)) {
                int length = str[i].indexOf(":");
                String sub = str[i].substring(length + 1, str[i].length()); // 对字符串进行截取
                len = Integer.parseInt(sub);
                continue;
            }
            i++;
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return len;
}

public void addBallot(String name) { // 定义增加选票方法
    File file = new File("C://count.txt"); // 创建文件对象
    FileReader fis;
    try {
        if (!file.exists()) // 如果该文件不存在
            file.createNewFile(); // 新建文件
        fis = new FileReader(file); // 对FileReader对象进行实例化
        BufferedReader bis = new BufferedReader(fis);
        String str[] = new String[3];
        String size;
        int i = 0;
        while ((size = bis.readLine()) != null) { // 循环读取文件
            str[i] = size.trim();
            if (str[i].startsWith(name)) {
                int length = str[i].indexOf(":"); // 获取指定字符索引位置
                String sub = str[i].substring(length + 1, str[i].length()); // 对字符串进行截取
                len = Integer.parseInt(sub) + 1;
                break;
            }
            i++;
        }
        FileWriter fw = new FileWriter(file); // 创建FileWriter 对象
        BufferedWriter bufw = new BufferedWriter(fw);
        bufw.write(name + ":" + len); // 向流中写数据

        bufw.close(); // 关闭流
        fw.close();

    } catch (Exception e) {
        e.printStackTrace();
    }
}

}

class MyMin extends JFrame implements ActionListener {
Box baseBox, boxH, boxV; // 创建Box对象
JTextArea text; // 创建JTextArea对象
JButton button; // 创建JButton对象
Candidate candidateOne, candidateTwo, candidateThree;

public MyMin() { // 在构造方法中设置窗体布局
    setBounds(100, 100, 500, 120);
    setVisible(true);
    setTitle("选出你心中的好干部!!");
    addWindowListener(new WindowAdapter() {
        @Override
        public void windowClosing(WindowEvent e) { // 窗体关闭事件
            System.exit(0);
        }
    });
    baseBox = Box.createHorizontalBox();
    boxH = Box.createHorizontalBox();
    boxV = Box.createHorizontalBox();
    candidateOne = new Candidate("小兵", new ImageIcon(getClass()
            .getResource("0.gif")));
    candidateTwo = new Candidate("小陈", new ImageIcon(getClass()
            .getResource("1.gif")));
    candidateThree = new Candidate("小李", new ImageIcon(getClass()
            .getResource("2.gif")));
    candidateOne.setSelectedIcon(new ImageIcon(getClass().getResource(
            "0.gif")));
    candidateTwo.setSelectedIcon(new ImageIcon(getClass().getResource(
            "1.gif")));
    candidateThree.setSelectedIcon(new ImageIcon(getClass().getResource(
            "2.gif")));
    boxH.add(candidateOne);
    boxH.add(candidateTwo);
    boxH.add(candidateThree);
    text = new JTextArea();
    button = new JButton("显示得票数");
    button.addActionListener(this);
    boxV.add(text);
    boxV.add(button);
    boxV.add(boxH);
    baseBox.add(boxV);
    Container con = getContentPane();
    con.setLayout(new FlowLayout());
    con.add(baseBox);
    con.validate();
}

@Override
public void actionPerformed(ActionEvent e) {
    text.setText(null);
    File file = new File("C://count.txt"); // 创建文件对象
    if (!file.exists()) { // 如果该文件不存在
        try {
            file.createNewFile(); // 新建文件
        } catch (IOException e1) {
            e1.printStackTrace();
        }
    }
    if (candidateOne.isSelected()) {
        candidateOne.addBallot(candidateOne.getText());
    }
    if (candidateTwo.isSelected()) {
        candidateTwo.addBallot(candidateTwo.getText());
    }
    if (candidateThree.isSelected()) {
        candidateThree.addBallot(candidateThree.getText());
    }
    text.append(candidateOne.getText() + ":"
            + candidateOne.getBallot(candidateOne.getText()) + "n");
    // 向文本框中追加信息
    text.append(candidateTwo.getText() + ":"
            + candidateTwo.getBallot(candidateTwo.getText()) + "n");
    text.append(candidateThree.getText() + ":"
            + candidateThree.getBallot(candidateThree.getText()) + "n");
    try {
        if (!file.exists()) {
            file.createNewFile();
        }
        FileWriter fw = new FileWriter(file); // 创建FileWriter类对象
        BufferedWriter bufw = new BufferedWriter(fw); // 创建BufferedWriter类对象
        bufw.write(text.getText()); // 将字符串数组中元素写入到磁盘文件中
        bufw.close(); // 将BufferedWriter流关闭
        fw.close();

    } catch (IOException e1) {
        e1.printStackTrace();
    }

    candidateOne.setSelected(false);
    candidateTwo.setSelected(false);
    candidateThree.setSelected(false);
}

}

public class Ballot {
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
new MyMin();
}
}

解决方案

你的问题是什么,这个注释很详细了,结合程序运行的界面,不难理解。如果你对swing没有概念,先google下。

解决方案二:

从该程序中具体分析 窗体和文本框的设计过程

时间: 2024-09-30 17:41:20

java eclipse-java程序功能设计分析和程序基本组成框架结构 大神们帮帮忙的相关文章

紧急啊 压缩感知方面随机解调程序。大神们帮帮忙啊

问题描述 紧急啊 压缩感知方面随机解调程序.大神们帮帮忙啊 压缩感知方面的随机解调程序,基础程序就好,大神们帮帮忙啊,非常感谢

无法输入-请大神们帮帮忙,程序中折半算法怎么不可以输入,直接跳到最后了

问题描述 请大神们帮帮忙,程序中折半算法怎么不可以输入,直接跳到最后了 #include "stdafx.h" #include #define MIX_SIZE 20 using namespace std; typedef struct _Data { int *elem; int lengh; }Data; void Creat(Data &data) { data.elem=(int *)malloc(MIX_SIZE*sizeof(int)); data.lengh=

求大神们帮帮忙 asp.net 调用dll的时候报试图加载格式不正确的程序

问题描述 求大神们帮帮忙 asp.net 调用dll的时候报试图加载格式不正确的程序 win7 64 dll也是在我自己电脑上生成的,网站也是部署在我自己的电脑上,调用dll的时候报试图加载格式不正确的程序 解决方案 C#调用DLL报"试图加载格式不正确的程序"试图加载格式不正确的程序试图加载格式不正确的程序 BadImageFormatException 解决方案二: 我用winform调用这个dll是可以调用成功的,还请前辈们不吝赐教

css 程序入门-求大神们帮帮忙,滚动条设置宽度

问题描述 求大神们帮帮忙,滚动条设置宽度 设置滚动条的宽度,最好滚动条没有,还有滚动条效果,没有设置宽 解决方案 如何在LWUIT设置滚动条的宽度如何在LWUIT设置滚动条的宽度select下拉框宽度设置问题(自适应宽度,水平滚动条) 解决方案二: http://www.php100.com/html/it/qianduan/2015/0114/8366.html

struts简单功能实现,代码中有注释,求各位大神们帮帮忙

问题描述 <formid="myform"name="myform"action=""method="post"><table><tralign="left"><td><inputtype="button"name="b1"value="key个数"onClick="queryn()&

java 此程序为啥有着这种结果呢?求大神们解释下。谢谢

问题描述 java 此程序为啥有着这种结果呢?求大神们解释下.谢谢 public class AccessProperty { static int i = 47; // 定义静态成员变量 public void call() { // 定义成员方法 System.out.println("调用call()方法"); for (i = 0; i < 3; i++) { System.out.print(i + " "); if (i == 2) { Syste

java小白试着分析了一下这个代码。求大神帮忙看一下正不正确;代码如下:

问题描述 java小白试着分析了一下这个代码.求大神帮忙看一下正不正确:代码如下: public class Test{ private static int i = 0; private static int j = 0; public static void main(String[] args) { int i = 2;//i之所以是2 而不是0 是因为 就近原则 int k = 3; { int j = 3; System.out.println("i+j ist"+i+&qu

线程-下面是一段Java代码,里面有几处看不懂,望大神指教,不胜感激。

问题描述 下面是一段Java代码,里面有几处看不懂,望大神指教,不胜感激. package 线程; import java.awt.*;import java.awt.event.*; import javax.swing.*; public class TestThread extends JFrame { /** * */ //private static final long serialVersionUID = 1L; JPanel jPanel1 = new JPanel(); JBu

mysql-用MySQL运行了一个maven ssm程序框架到web上,求位大神告诉我这是什么错误?谢谢!

问题描述 用MySQL运行了一个maven ssm程序框架到web上,求位大神告诉我这是什么错误?谢谢! [com.alibaba.druid.pool.DruidDataSource]create connection error java.sql.SQLException: Access denied for user 'sypro'@'localhost' (using password: YES) at com.mysql.jdbc.SQLError.createSQLException