`
stjauns
  • 浏览: 87942 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

WeekselectPanel选择一年中的某周

    博客分类:
  • JAVA
阅读更多
系统要增加工作计划功能,让每个营业部每周末分派下周本部门每个人的工作量。
用到了这个周次选择Panel。网上随便搜搜没有,就自己弄了个。
界面如图:


主功能代码
package transms.app._0all.util.weekselect;

import javax.swing.ButtonGroup;
import javax.swing.JPanel;
import java.awt.GridLayout;
import java.awt.Color;
import java.awt.BorderLayout;
import java.awt.Insets;

import javax.swing.JButton;
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;

import javax.swing.JToggleButton;

import org.apache.log4j.Logger;

import transms.app._0all.util.VOUtil;
import transms.app._0all.util.providers.Colors;
import util.Info;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.JToolBar;
import javax.swing.JComboBox;

public class WeekselectPanel extends JPanel {

    private static final long serialVersionUID = 1L;

    /**
     * This is the default constructor
     */
    public WeekselectPanel() {
        super();
        initialize();
        selectedyear = Integer.valueOf(VOUtil.now().substring(0, 4));
        getComboYear().setSelectedItem(String.valueOf(selectedyear));
        try {
            addWeeks(selectedyear);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        setToday();
    }

    private int selectedyear = -1;

    public String getYear() {
        return String.valueOf(selectedyear);
    }

    private int selectedweek = -1;

    public int getWeek() {
        return selectedweek;
    }

    /**
     * 选中今天
     */
    private void setToday() {
        try {
            int currentweek = du.getWeekNumOfYearDay(VOUtil.now());
            mapButton.get(currentweek).setSelected(true);
            action(String.valueOf(currentweek));
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    Logger logger = Logger.getLogger(WeekselectPanel.class); // @jve:decl-index=0:

    Map<Integer, JToggleButton> mapButton = new HashMap<Integer, JToggleButton>(); // @jve:decl-index=0:

    Map<Integer, Color> mapMonthcolor = new HashMap<Integer, Color>(); // @jve:decl-index=0:

    Map<Integer, Color> mapSeasoncolor = new HashMap<Integer, Color>(); // @jve:decl-index=0:

    private JPanel panelWeek = null;

    private JToolBar jToolBar = null;

    private JComboBox comboYear = null;

    private JButton jButtonOK = null;

    {
        mapMonthcolor.put(1, Colors.Chartreuse3);
        mapMonthcolor.put(2, Colors.DarkOliveGreen2);
        mapMonthcolor.put(3, Colors.DarkOrange1);
        mapMonthcolor.put(4, Colors.Firebrick1);
        mapMonthcolor.put(5, Colors.Ivory2);
        mapMonthcolor.put(6, Colors.Khaki1);
        mapMonthcolor.put(7, Colors.LightSalmon);
        mapMonthcolor.put(8, Colors.OrangeRed);
        mapMonthcolor.put(9, Colors.PaleGreen);
        mapMonthcolor.put(10, Colors.PaleTurquoise1);
        mapMonthcolor.put(11, Colors.Purple3);
        mapMonthcolor.put(12, Color.CYAN);

        mapSeasoncolor.put(1, Colors.Ivory2);
        mapSeasoncolor.put(2, Colors.Ivory2);
        mapSeasoncolor.put(3, Colors.Ivory2);
        mapSeasoncolor.put(4, Colors.Chartreuse3);
        mapSeasoncolor.put(5, Colors.Chartreuse3);
        mapSeasoncolor.put(6, Colors.Chartreuse3);
        mapSeasoncolor.put(7, Colors.Purple3);
        mapSeasoncolor.put(8, Colors.Purple3);
        mapSeasoncolor.put(9, Colors.Purple3);
        mapSeasoncolor.put(10, Colors.DarkOrange1);
        mapSeasoncolor.put(11, Colors.DarkOrange1);
        mapSeasoncolor.put(12, Colors.DarkOrange1);
    }

    private DateUtil du = new DateUtil(); // @jve:decl-index=0:

    private void addWeeks(int year) throws ParseException {
        ButtonGroup bg = new ButtonGroup();
        getPanelWeek().removeAll();
        mapButton.clear();
        for (int i = 1; i < 55; i++) {
            String sun = du.getYearWeekFirstDay(year, i);
            String sat = du.getYearWeekEndDay(year, i);
            if (!sat.startsWith(String.valueOf(year))) {
                continue;
            }
            if (mapButton.get(i) == null) {
                JToggleButton button = new JToggleButton(String.valueOf(i));
                mapButton.put(i, button);
                getPanelWeek().add(mapButton.get(i));
                bg.add(mapButton.get(i));
                mapButton.get(i).addActionListener(getButtonAction());
            }
            mapButton.get(i).setMargin(new Insets(0, 0, 0, 0));
            mapButton.get(i).setToolTipText(
                    i + " " + du.getMonth(sun) + " " + sun + " - " + sat);
            mapButton.get(i).setForeground(mapMonthcolor.get(du.getMonth(sat)));
            mapButton.get(i).setBackground(mapSeasoncolor.get(du.getMonth(sat)));
            mapButton.get(i).setActionCommand(String.valueOf(i));

        }
    }

    private ActionListener getButtonAction() {
        return new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                action(e.getActionCommand());
            }
        };
    }

    private void action(String actionCommand) {
        selectedweek = Integer.valueOf(actionCommand);
        try {
            getJButtonOK().setText(
                    actionCommand
                            + "周 "
                            + du.getYearWeekFirstDay(Integer.valueOf(getComboYear()
                                    .getSelectedItem().toString()), selectedweek)
                            + Info.labelInfo("to")
                            + du.getYearWeekEndDay(Integer.valueOf(getComboYear()
                                    .getSelectedItem().toString()), selectedweek));
        } catch (NumberFormatException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (ParseException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

    }

    /**
     * This method initializes this
     * 
     * @return void
     */
    private void initialize() {
        this.setLayout(new BorderLayout());
        this.setSize(312, 102);
        this.add(getPanelWeek(), BorderLayout.CENTER);
        this.add(getJToolBar(), BorderLayout.NORTH);
        this.setBorder(BorderFactory.createEtchedBorder());
    }

    /**
     * This method initializes panelWeek
     * 
     * @return javax.swing.JPanel
     */
    private JPanel getPanelWeek() {
        if (panelWeek == null) {
            GridLayout gridLayout1 = new GridLayout(0, 13);
            panelWeek = new JPanel();
            panelWeek.setLayout(gridLayout1);
        }
        return panelWeek;
    }

    /**
     * This method initializes jToolBar
     * 
     * @return javax.swing.JToolBar
     */
    private JToolBar getJToolBar() {
        if (jToolBar == null) {
            jToolBar = new JToolBar();
            jToolBar.add(getComboYear());
            jToolBar.add(getJButtonOK());
        }
        return jToolBar;
    }

    /**
     * This method initializes comboYear
     * 
     * @return javax.swing.JComboBox
     */
    private JComboBox getComboYear() {
        if (comboYear == null) {
            String[] years = { "2009", "2010", "2011", "2012", "2013", "2014", "2015",
                    "2016", "2017", "2018", "2019", "2020" };
            comboYear = new JComboBox(years);
            comboYear.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    selectedyear = Integer
                            .valueOf(comboYear.getSelectedItem().toString());
                    try {
                        addWeeks(selectedyear);
                    } catch (NumberFormatException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                    } catch (ParseException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                    }
                }
            });
        }
        return comboYear;
    }

    /**
     * This method initializes jButtonOK
     * 
     * @return javax.swing.JButton
     */
    private JButton getJButtonOK() {
        if (jButtonOK == null) {
            jButtonOK = new JButton();
            jButtonOK.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {
                    logger.info(selectedyear + " " + selectedweek);
                }
            });
        }
        return jButtonOK;
    }

} // @jve:decl-index=0:visual-constraint="10,9"


日期处理工具,网上随便搜的:
package transms.app._0all.util.weekselect;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Calendar;
import java.util.GregorianCalendar;

/**
 * 说明: 取日期时间工具
 */
public class DateUtil {
    /**
     * @see 取得当前日期(格式为:yyyy-MM-dd)
     * @return String
     */
    public String GetDate() {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        String sDate = sdf.format(new Date());
        return sDate;
    }

    /**
     * @see 取得当前时间(格式为:yyy-MM-dd HH:mm:ss)
     * @return String
     */
    public static String GetDateTime() {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String sDate = sdf.format(new Date());
        return sDate;
    }

    /**
     * @see 按指定格式取得当前时间()
     * @return String
     */
    public String GetTimeFormat(String strFormat) {
        SimpleDateFormat sdf = new SimpleDateFormat(strFormat);
        String sDate = sdf.format(new Date());
        return sDate;
    }

    /**
     * @see 取得指定时间的给定格式()
     * @return String
     * @throws ParseException
     */
    public String SetDateFormat(String myDate, String strFormat) throws ParseException {
        SimpleDateFormat sdf = new SimpleDateFormat(strFormat);
        String sDate = sdf.format(sdf.parse(myDate));
        return sDate;
    }

    public String FormatDateTime(String strDateTime, String strFormat) {
        String sDateTime = strDateTime;
        try {
            Calendar Cal = parseDateTime(strDateTime);
            SimpleDateFormat sdf = null;
            sdf = new SimpleDateFormat(strFormat);
            sDateTime = sdf.format(Cal.getTime());
        } catch (Exception e) {
        }
        return sDateTime;
    }

    public static Calendar parseDateTime(String baseDate) {
        Calendar cal = null;
        cal = new GregorianCalendar();
        int yy = Integer.parseInt(baseDate.substring(0, 4));
        int mm = Integer.parseInt(baseDate.substring(5, 7)) - 1;
        int dd = Integer.parseInt(baseDate.substring(8, 10));
        int hh = 0;
        int mi = 0;
        int ss = 0;
        if (baseDate.length() > 12) {
            hh = Integer.parseInt(baseDate.substring(11, 13));
            mi = Integer.parseInt(baseDate.substring(14, 16));
            ss = Integer.parseInt(baseDate.substring(17, 19));
        }
        cal.set(yy, mm, dd, hh, mi, ss);
        return cal;
    }

    public int getDay(String strDate) {
        Calendar cal = parseDateTime(strDate);
        return cal.get(Calendar.DATE);
    }

    public int getMonth(String strDate) {
        Calendar cal = parseDateTime(strDate);
        return cal.get(Calendar.MONTH) + 1;
    }

    public int getWeekDay(String strDate) {
        Calendar cal = parseDateTime(strDate);
        return cal.get(Calendar.DAY_OF_WEEK);
    }

    public String getWeekDayName(String strDate) {
        String mName[] = { "日", "一", "二", "三", "四", "五", "六" };
        int iWeek = getWeekDay(strDate);
        iWeek = iWeek - 1;
        return "星期" + mName[iWeek];
    }

    public int getYear(String strDate) {
        Calendar cal = parseDateTime(strDate);
        return cal.get(Calendar.YEAR) + 1900;
    }

    public String DateAdd(String strDate, int iCount, int iType) {
        Calendar Cal = parseDateTime(strDate);
        int pType = 0;
        if (iType == 0) {
            pType = 1;
        } else if (iType == 1) {
            pType = 2;
        } else if (iType == 2) {
            pType = 5;
        } else if (iType == 3) {
            pType = 10;
        } else if (iType == 4) {
            pType = 12;
        } else if (iType == 5) {
            pType = 13;
        }
        Cal.add(pType, iCount);
        SimpleDateFormat sdf = null;
        if (iType <= 2)
            sdf = new SimpleDateFormat("yyyy-MM-dd");
        else
            sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String sDate = sdf.format(Cal.getTime());
        return sDate;
    }

    public String DateAdd(String strOption, int iDays, String strStartDate) {
        if (!strOption.equals("d"))
            ;
        return strStartDate;
    }

    public int DateDiff(String strDateBegin, String strDateEnd, int iType) {
        Calendar calBegin = parseDateTime(strDateBegin);
        Calendar calEnd = parseDateTime(strDateEnd);
        long lBegin = calBegin.getTimeInMillis();
        long lEnd = calEnd.getTimeInMillis();
        int ss = (int) ((lBegin - lEnd) / 1000L);
        int min = ss / 60;
        int hour = min / 60;
        int day = hour / 24;
        if (iType == 0)
            return hour;
        if (iType == 1)
            return min;
        if (iType == 2)
            return day;
        else
            return -1;
    }

    /***************************************************************************
     * @功能 判断某年是否为闰年
     * @return boolean
     * @throws ParseException
     **************************************************************************/
    public boolean isLeapYear(int yearNum) {
        boolean isLeep = false;
        /** 判断是否为闰年,赋值给一标识符flag */
        if ((yearNum % 4 == 0) && (yearNum % 100 != 0)) {
            isLeep = true;
        } else if (yearNum % 400 == 0) {
            isLeep = true;
        } else {
            isLeep = false;
        }
        return isLeep;
    }

    /***************************************************************************
     * @功能 计算当前日期某年的第几周
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public int getWeekNumOfYear() {
        Calendar calendar = Calendar.getInstance();
        int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR);
        return iWeekNum;
    }

    /***************************************************************************
     * @功能 计算指定日期某年的第几周
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public int getWeekNumOfYearDay(String strDate) throws ParseException {
        Calendar calendar = Calendar.getInstance();
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
        Date curDate = format.parse(strDate);
        calendar.setTime(curDate);
        int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR);
        return iWeekNum;
    }

    /***************************************************************************
     * @功能 计算某年某周的开始日期
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public String getYearWeekFirstDay(int yearNum, int weekNum) throws ParseException {

        Calendar cal = Calendar.getInstance();
        cal.set(Calendar.YEAR, yearNum);
        cal.set(Calendar.WEEK_OF_YEAR, weekNum);
        cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
        // 分别取得当前日期的年、月、日
        String tempYear = Integer.toString(cal.get(Calendar.YEAR));
        String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1);
        String tempDay = Integer.toString(cal.get(Calendar.DATE));
        String tempDate = tempYear + "-" + tempMonth + "-" + tempDay;
        return SetDateFormat(tempDate, "yyyy-MM-dd");

    }

    /***************************************************************************
     * @功能 计算某年某周的结束日期
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public String getYearWeekEndDay(int yearNum, int weekNum) throws ParseException {
        Calendar cal = Calendar.getInstance();
        cal.set(Calendar.YEAR, yearNum);
        cal.set(Calendar.WEEK_OF_YEAR, weekNum + 1);
        cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
        // 分别取得当前日期的年、月、日
        String tempYear = Integer.toString(cal.get(Calendar.YEAR));
        String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1);
        String tempDay = Integer.toString(cal.get(Calendar.DATE));
        String tempDate = tempYear + "-" + tempMonth + "-" + tempDay;
        return SetDateFormat(tempDate, "yyyy-MM-dd");
    }

    /***************************************************************************
     * @功能 计算某年某月的开始日期
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public String getYearMonthFirstDay(int yearNum, int monthNum) throws ParseException {

        // 分别取得当前日期的年、月、日
        String tempYear = Integer.toString(yearNum);
        String tempMonth = Integer.toString(monthNum);
        String tempDay = "1";
        String tempDate = tempYear + "-" + tempMonth + "-" + tempDay;
        return SetDateFormat(tempDate, "yyyy-MM-dd");

    }

    /***************************************************************************
     * @功能 计算某年某月的结束日期
     * @return interger
     * @throws ParseException
     **************************************************************************/
    public String getYearMonthEndDay(int yearNum, int monthNum) throws ParseException {

        // 分别取得当前日期的年、月、日
        String tempYear = Integer.toString(yearNum);
        String tempMonth = Integer.toString(monthNum);
        String tempDay = "31";
        if (tempMonth.equals("1") || tempMonth.equals("3") || tempMonth.equals("5")
                || tempMonth.equals("7") || tempMonth.equals("8")
                || tempMonth.equals("10") || tempMonth.equals("12")) {
            tempDay = "31";
        }
        if (tempMonth.equals("4") || tempMonth.equals("6") || tempMonth.equals("9")
                || tempMonth.equals("11")) {
            tempDay = "30";
        }
        if (tempMonth.equals("2")) {
            if (isLeapYear(yearNum)) {
                tempDay = "29";
            } else {
                tempDay = "28";
            }
        }
        // System.out.println("tempDay:" + tempDay);
        String tempDate = tempYear + "-" + tempMonth + "-" + tempDay;
        return SetDateFormat(tempDate, "yyyy-MM-dd");
    }
}


自定义颜色类:
package transms.app._0all.util.providers;

import java.awt.Color;

public class Colors extends Color {

    private static final long serialVersionUID = 3680677118390160469L;

    public Colors(int rgb) {
        super(rgb);
    }

    /**
     * 淡黄
     */
    public static final Color Khaki1 = new Color(255, 246, 143);

    /**
     * 浅蓝
     */
    public static final Color PaleTurquoise1 = new Color(187, 255, 255);

    /**
     * 背景色
     */
    public static final Color Ivory2 = new Color(238, 238, 224);

    /**
     * 火红
     */
    public static final Color Firebrick1 = new Color(255, 48, 48);

    /**
     * 暗绿
     */
    public static final Color Chartreuse3 = new Color(69, 139, 0);

    /**
     * 紫
     */
    public static final Color Purple3 = new Color(125, 38, 205);

    /**
     * 橘红
     */
    public static final Color OrangeRed = new Color(255, 69, 0);

    /**
     * 暗橙
     */
    public static final Color DarkOrange1 = new Color(255, 127, 0);

    /**
     * 暗橄榄绿
     */
    public static final Color DarkOliveGreen2 = new Color(188, 238, 104);

    /**
     * 淡红
     */
    public static final Color LightSalmon = new Color(255, 160, 122);

    /**
     * 淡绿
     */
    public static final Color PaleGreen = new Color(152, 251, 152);
}
  • 大小: 6 KB
分享到:
评论

相关推荐

    sasasasasasasasas

    sasasasasasasasas

    VBA按模板生成表格.xlsm

    VBA按模板生成表格.xlsm

    QRBiTCN双向时间卷积神经网络分位数回归区间预测(Matlab完整源码和数据)

    1.Matlab实现QRBiTCN双向时间卷积神经网络分位数回归区间预测 2.包括点预测+概率预测曲线,MatlabR2023a及以上版本运行!评价指标包括R2、MAE、RMSE、MAPE、区间覆盖率picp、区间平均宽度百分比pinaw等。 3.直接替换Excel数据即可用,注释清晰,适合新手小白,直接运行main文件一键出图。 4.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 5.适用对象:大学生课程设计、期末大作业和毕业设计。 6.作者介绍:某大厂资深算法工程师,从事Matlab、Python算法仿真工作8年;擅长智能优化算法、神经网络预测、信号处理、元胞自动机等多种领域的算法仿真实验,更多仿真源码、数据集定制私信+。

    开源、易集成的人脸识别系统

    这个图人脸检测服务用于检测图像中的所有人脸。人脸验证可用于:当客户向您提供身份证或驾驶执照并且您需要验证这是否是他时、当用户将他的社交网络帐户连接到您的应用程序并且您想要验证这是否是他时。它能在图像上找到对应的人脸,可以用于收集有关您的商店在不同性别中受欢迎程度的统计数据、收集有关您的活动在哪些年龄段受欢迎的统计数据、获取地标信息以了解客户的视线、收集商店中有多少顾客的统计数据、识别所有顾客是否正确佩戴口罩。

    2024-2030中国白刚玉市场现状研究分析与发展前景预测报告 Sample.pdf

    QYResearch是全球知名的大型咨询公司,行业涵盖各高科技行业产业链细分市场,横跨如半导体产业链(半导体设备及零部件、半导体材料、集成电路、制造、封测、分立器件、传感器、光电器件)、光伏产业链(设备、硅料/硅片、电池片、组件、辅料支架、逆变器、电站终端)、新能源汽车产业链(动力电池及材料、电驱电控、汽车半导体/电子、整车、充电桩)、通信产业链(通信系统设备、终端设备、电子元器件、射频前端、光模块、4G/5G/6G、宽带、IoT、数字经济、AI)、先进材料产业链(金属材料、高分子材料、陶瓷材料、纳米材料等)、机械制造产业链(数控机床、工程机械、电气机械、3C自动化、工业机器人、激光、工控、无人机)、食品药品、医疗器械、农业等。 邮箱:market@qyresearch.com

    高考评价体系是学科内研究性学习的理论基础和实践指南.docx

    高考评价体系是学科内研究性学习的理论基础和实践指南.docx

    JSP+sql实验教学管理系统(系统+lw+开题报告+封面+中期检查表+英文文献).zip

    现在的实验教学网络管理系统存在实验题目分发慢,文档交换不方便,师生交流困难等方面的问题。为了解决现有系统的这些问题,特开发新的实验教学网络管理系统。 作者以实际应用为开发背景,运用软件工程原理和开发方法,采用当前网络开发主流技术,结合JSP和SQL数据库技术,设计并开发了一个基于B/S模式的实验教学管理系统。首先对开发系统进行了需求分析,得到系统功能需求、数据流图和数据字典。随后对系统进行了概要设计和详细设计,在概要设计中主要进行了系统功能模块划分,将系统划分为了管理员控制模块、教师控制模块和学生控制模块三大模块,其中管理员的权限包括对新教师和新学生的注册,对新管理员的注册和对实验题目的审批;教师的权限包括实验题目的申请,学生实验结果的查看,回答学生提问;学生权限包括选择实验题目,上传实验结果和向教师提问。概要设计中还进行了系统总体结构设计,系统数据结构设计,系统安全设计等。详细设计主要包括系统数据库访问的实现,主要功能模块的具体实现,模块实现关键代码等。最后对系统进行了功能测试,并对测试结果进行了分析,在总结、分析的基础上,指出了系统存在的不足及需要改进的地方,为今后开发类似系统提供

    数据库基本概念 ,常用数据库,sql server数据库,Access数据库,sql语句,数据库连接,数据库分页显示

    数据库基本概念 ,常用数据库,sql server数据库,Access数据库,sql语句,

    研究经济利益声明(研究者).doc

    研究经济利益声明(研究者).doc

    最新版RTDTOOL 显示屏驱动刷写程序

    最新版RTDTOOL 显示屏驱动刷写程序

    (完整)信息系统运维方案

    1、运维服务内容 2、运维服务流程 3、服务管理制度规范 4、应急服务响应措施

    协同过滤+源代码+文档说明

    - 不懂运行,下载完可以私聊问,可远程教学 该资源内项目源码是个人的毕设,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! <项目介绍> 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------

    CentOS-7-x86-64-Minimal-2009-迷你版系统镜像

    迷你版系统镜像

    产业学院建设计划(意向)表.docx

    产业学院建设计划(意向)表.docx

    前端响应式布局笔记-媒体查询

    【前端】响应式布局笔记——媒体查询(media)案例

    sakila-db.zip

    sakila-db.zip

    stm32 source code

    stm32 source code

    jsp+sql城乡信息管理(系统).zip

    管理信息系统(Management System,简称MS)是一个由管理人员和计算机组成的用以进行信息的收集、传输、加工、存储、维护和使用的系统。它是一门综合了管理科学,系统理论,计算机科学的系统性边缘科学。 管理系统的物理组成: (1)计算机硬件系统:包括主机、外部存储器、输入输出设备等。 (2)计算机软件系统:包括系统软件和应用软件两大部分。 (3)通信系统:包括线路等通信设施和与计算机网络、数据通信有关的软件等。 工作人员:包括系统分析员、程序设计员、维护人员、管理员、操作人员等。

    基于stm32的毕业设计2023停车管理系统.zip

    基于stm32的毕业设计2023停车管理系统.zip 基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip基于stm32的毕业设计2023停车管理系统.zip

Global site tag (gtag.js) - Google Analytics