- 浏览: 91623 次
- 性别:
- 来自: 深圳
最新评论
-
Csf_java:
是不是少了什么东西?加载不了dll吗?Exception in ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
zaizai13:
请问我的为什么总是报log4j:WARN No appende ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
chairmanwang 写道楼主您好,我使用了您的程序,但是 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
chairmanwang:
楼主您好,我使用了您的程序,但是程序报错log4j:WARN ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
daizhe 写道楼主好!感谢分享!我的系统是win7 64位 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
系统要增加工作计划功能,让每个营业部每周末分派下周本部门每个人的工作量。
用到了这个周次选择Panel。网上随便搜搜没有,就自己弄了个。
界面如图:
主功能代码
日期处理工具,网上随便搜的:
自定义颜色类:
用到了这个周次选择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); }
发表评论
-
双击一个jar文件打开另一个jar文件中的main方法
2022-12-01 14:08 276做一个仅有META-INF的jar文件,其下MANIFEST. ... -
JSP网站从Tomcat7升级到Tomcat9抛出错误Unable to compile class for JSP] with root cause
2020-03-05 13:10 1052一个历史遗留的JSP网站,部署在Tomcat7上,一切正常 现 ... -
解决JTextPane设定其Background颜色无法导出正确的HTML的问题
2018-06-26 18:09 1344设定foreground代码如下: SimpleAttribu ... -
java和mysql的week周次对应方法
2018-04-13 13:43 1115MYSQL方法: select dt,if(month(dt) ... -
使用WindowBuilder来代替VisualEditor
2016-07-02 10:54 1@wbp.factory 标记static方法为Compone ... -
Eclipse Mars.2 refactory rename提示大量syntax error,编译器却无error仅warning
2016-07-01 12:26 767折腾半天,发现还是'_'作为包名和变量名的问题 最终把所有的' ... -
java8中的getTimeZone表现与java7中不同
2015-01-13 17:44 1051原来的代码中使用TimeZone.setDefault(Tim ... -
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
2013-05-27 15:56 8883需求:要直接使用SWING来抓高拍仪的图,亦即支持摄像头。 曾 ... -
Eclipse+Subclipse插件,设定一个文件取消其版本控制,添加到svn:ignor。
2013-03-14 23:15 4995原始帖子见: http://www.oschina.net/q ... -
tomcat:A docBase *** inside the host appBase has been specified...问题及解决
2013-01-15 18:33 13461eclipse galileo升级到indigo,发布项目到t ... -
ftp4j连接Microsoft FTP Service 7.5的list错误it.sauronsoftware.ftp4j.FTPListParse问题及解决
2012-11-12 18:28 3369源代码参见前几篇的附件。 FTP服务器准备从cuteFTP换 ... -
深圳地铁线路大图-PNG格式
2011-06-25 12:04 2003上网找一圈,只有老图,在官方网站上也没有能下载的图片格式,于是 ... -
从MYSQL的binlog恢复指定的SQL语句,解决中文乱码问题。
2011-04-09 21:24 3462系统错误导致3天中的部分数据被错误覆盖,只能从MYSQL的bi ... -
eclipst+tomcat 发布多个互相依赖的project问题
2010-10-28 16:32 1628若一个Dynamic Web project的java bui ... -
JAVA自动更新下载FTP服务器上的文件,带Swing进度。
2010-05-24 17:56 6055使用ftp4j-1.5,见http://www.saurons ... -
OY!原来是JAVA的BUG呀~~~在SwingWorker中嵌套调用SwingWorker的死锁问题解决方法。
2010-05-08 14:18 1253java6update18开始,在一个SwingWorker的 ... -
20100426,放弃EJB,转向轻量级的Hessian
2010-04-28 15:25 1792公司系统的远程调用层从EJB2.1转换为Hessian了,现正 ... -
设定窗口的默认按钮按键:ESC和ENTER等按键
2010-03-03 17:44 1582在Google上查到的代码见下面的链接 http://www. ... -
JSplitPane用代码调用OneTouchExpand/Collapse
2009-10-26 15:49 1096直接设定: getJsp1().setDividerLocat ... -
AutoCodeGenTool自动生成重复代码
2009-10-24 23:44 1159公司系统用tikeswing做表现层,配置布局的时候有很多重复 ...
相关推荐
"SMART 200系列地址库:灵活配置的位读写系统",SMART 200 寻址-库 6个子 位:一个读,一个写 读:例如 读取从V0.0开始的第N个位的状态 写:例如 将值写入V0.0开始的第N个位中 起始地址和第几个位都可自定义 字节:读写一体,引脚控制读或写 字:读写一体,引脚控制读或写 双字:读写一体,引脚控制读或写 实数:读写一体,引脚控制读或写 ,核心关键词:SMART 200; 寻址-库; 子位; 读; 写; 起始地址; 自定义; 字节; 字; 双字; 实数。,"SMART 200库:位寻址与多读写功能"
1、文件内容:perl-ExtUtils-Manifest-1.61-244.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/perl-ExtUtils-Manifest-1.61-244.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
多水下航行器协同定位的MATLAB仿真:基于《Cooperative Localization for Autonomous Underwater Vehicles》的研究与实践,【7】MATLAB仿真 多水下航行器协同定位,有参考文档。 主要参考文档: 1. Cooperative Localization for Autonomous Underwater Vehicles,The International Journal of Robotics Research 主要供文档方法的学习 非全文复现。 ,MATLAB仿真; 多水下航行器协同定位; 参考文档; 自主水下航行器; 机器人学国际期刊; Cooperative Localization。,MATLAB仿真:多水下航行器协同定位研究参考国际期刊论文
基于大语言模型的多模态社交媒体信息流行度预测研究
1、文件内容:perl-Algorithm-Diff-1.1902-17.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/perl-Algorithm-Diff-1.1902-17.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
《基于分时电价下电动汽车多类型充放电调度策略优化及其经济与负荷曲线改善分析》,11-分时电价下电动汽车充放电调度策略优化-100% 摘要:代码主要做的是分时电价下电动汽车充放电策略的优化,电动汽车选取了四种典型的类型,包括比亚迪EV,尼桑EV,宝马mini以及三菱EV,四种类型电动汽车取若干辆,约束重点关注充放电约束、蓄电量约束、0-1启停约束等等,目标函数为经济效益最优,同时考虑负荷曲线的改善,并通过图展示其结果,具体看下图。 ,核心关键词: 分时电价; 电动汽车; 充放电策略优化; 类型; 约束; 经济效益; 负荷曲线改善; 图展示。,电价优化下电动汽车充放电调度策略研究
IMG_20250130_120659.jpg
该项目是一款基于JavaScript、TypeScript和微信小程序开发的火车票购票系统源码,包含1634个文件,涵盖395个JavaScript文件、293个TypeScript文件、271个JSON配置文件、240个WXML模板文件、232个WXSS样式文件、138个WXS脚本文件,并辅以22个PNG图片、19个Markdown文档和1个JPG图片。该系统旨在提供便捷的火车票购票服务。
驱动DHT11要学会看数据手册
《COMSOL模拟增强型地热开采采热井温度变化一年周期的瞬态分析》,comsol增强型地热开采 本模型采用达西定律接口、多孔介质传热接口、非等温管道流接口,采用瞬态求解器,求解采热井一年的温度变化 ,comsol; 增强型地热开采; 达西定律接口; 多孔介质传热接口; 非等温管道流接口; 瞬态求解器; 采热井温度变化,《COMSOL模型在地热开采中模拟采热井一年温度变化的研究》
0016-08-16122503-曾洋.zip
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。
week01_lab_solutions.ipynb
免费JAVA毕业设计 2024成品源码+论文+录屏+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx
Golang. KisFlow(Keep It Simple Flow).
免费JAVA毕业设计 2024成品源码+论文+录屏+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。
1、文件内容:perl-B-Keywords-1.13-2.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/perl-B-Keywords-1.13-2.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
1、文件内容:perl-Net-DNS-Nameserver-0.72-6.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/perl-Net-DNS-Nameserver-0.72-6.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
基于Comsol模拟的近场金属探针激发表面等离子体激元(SPP)的研究,Comsol近场金属探针激发SPP。 ,Comsol; 近场金属探针; SPP; 激发。,"Comsol模拟激发金属探针的SPP现象"