• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 语言: Java
  • 标签:

资源简介

Java 投票统计(基础篇-实例453).zip

资源截图

代码片段和文件信息

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 s

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2010-09-10 15:22  .classpath
     文件         379  2010-09-10 15:22  .project
     文件           1  2010-09-10 15:22  count.txt
     文件        2200  2010-09-10 15:22  bin\com\mingrisoft\ballot\0.gif
     文件        2832  2010-09-10 15:22  bin\com\mingrisoft\ballot\1.gif
     文件        3581  2010-09-10 15:22  bin\com\mingrisoft\ballot\2.gif
     文件         750  2013-11-21 08:42  bin\com\mingrisoft\ballot\Ballot.class
     文件        2770  2013-11-21 08:42  bin\com\mingrisoft\ballot\Candidate.class
     文件         702  2013-11-21 08:42  bin\com\mingrisoft\ballot\MyMin$1.class
     文件        4095  2013-11-21 08:42  bin\com\mingrisoft\ballot\MyMin.class
     文件        2200  2010-09-10 15:22  src\com\mingrisoft\ballot\0.gif
     文件        2832  2010-09-10 15:22  src\com\mingrisoft\ballot\1.gif
     文件        3581  2010-09-10 15:22  src\com\mingrisoft\ballot\2.gif
     文件        6820  2010-09-10 15:22  src\com\mingrisoft\ballot\Ballot.java

评论

共有 条评论