- 浏览: 90486 次
- 性别:
- 来自: 深圳
最新评论
-
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 239做一个仅有META-INF的jar文件,其下MANIFEST. ... -
JSP网站从Tomcat7升级到Tomcat9抛出错误Unable to compile class for JSP] with root cause
2020-03-05 13:10 970一个历史遗留的JSP网站,部署在Tomcat7上,一切正常 现 ... -
解决JTextPane设定其Background颜色无法导出正确的HTML的问题
2018-06-26 18:09 1317设定foreground代码如下: SimpleAttribu ... -
java和mysql的week周次对应方法
2018-04-13 13:43 1102MYSQL方法: 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 729折腾半天,发现还是'_'作为包名和变量名的问题 最终把所有的' ... -
java8中的getTimeZone表现与java7中不同
2015-01-13 17:44 1041原来的代码中使用TimeZone.setDefault(Tim ... -
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
2013-05-27 15:56 8868需求:要直接使用SWING来抓高拍仪的图,亦即支持摄像头。 曾 ... -
Eclipse+Subclipse插件,设定一个文件取消其版本控制,添加到svn:ignor。
2013-03-14 23:15 4975原始帖子见: http://www.oschina.net/q ... -
tomcat:A docBase *** inside the host appBase has been specified...问题及解决
2013-01-15 18:33 13431eclipse galileo升级到indigo,发布项目到t ... -
ftp4j连接Microsoft FTP Service 7.5的list错误it.sauronsoftware.ftp4j.FTPListParse问题及解决
2012-11-12 18:28 3344源代码参见前几篇的附件。 FTP服务器准备从cuteFTP换 ... -
深圳地铁线路大图-PNG格式
2011-06-25 12:04 1952上网找一圈,只有老图,在官方网站上也没有能下载的图片格式,于是 ... -
从MYSQL的binlog恢复指定的SQL语句,解决中文乱码问题。
2011-04-09 21:24 3430系统错误导致3天中的部分数据被错误覆盖,只能从MYSQL的bi ... -
eclipst+tomcat 发布多个互相依赖的project问题
2010-10-28 16:32 1600若一个Dynamic Web project的java bui ... -
JAVA自动更新下载FTP服务器上的文件,带Swing进度。
2010-05-24 17:56 6019使用ftp4j-1.5,见http://www.saurons ... -
OY!原来是JAVA的BUG呀~~~在SwingWorker中嵌套调用SwingWorker的死锁问题解决方法。
2010-05-08 14:18 1240java6update18开始,在一个SwingWorker的 ... -
20100426,放弃EJB,转向轻量级的Hessian
2010-04-28 15:25 1761公司系统的远程调用层从EJB2.1转换为Hessian了,现正 ... -
设定窗口的默认按钮按键:ESC和ENTER等按键
2010-03-03 17:44 1572在Google上查到的代码见下面的链接 http://www. ... -
JSplitPane用代码调用OneTouchExpand/Collapse
2009-10-26 15:49 1059直接设定: getJsp1().setDividerLocat ... -
AutoCodeGenTool自动生成重复代码
2009-10-24 23:44 1136公司系统用tikeswing做表现层,配置布局的时候有很多重复 ...
相关推荐
基于springboot大学生就业信息管理系统源码数据库文档.zip
基于java的驾校收支管理可视化平台的开题报告
时间序列 原木 间隔5秒钟 20241120
毕业设计&课设_基于 Vue 的电影在线预订与管理系统:后台 Java(SSM)代码,为毕业设计项目.zip
基于springboot课件通中小学教学课件共享平台源码数据库文档.zip
基于java的网上购物商城的开题报告
Delphi人脸检测与识别Demo1fdef-main.zip
基于java的咖啡在线销售系统的开题报告
基于java的自助医疗服务系统的开题报告.docx
内容概要:本文档全面介绍了Visual Basic(VB)编程语言的基础知识和高级应用。首先概述了VB的基本特性和开发环境,随后详细讲述了VB的数据类型、变量、运算符、控制结构、数组、过程与函数、变量作用域等内容。接着介绍了窗体设计、控件使用、菜单与工具栏的设计,文件操作、数据库访问等关键知识点。最后讨论了VB的学习方法、发展历史及其在桌面应用、Web应用、数据库应用、游戏开发和自动化脚本编写等领域的广泛应用前景。 适合人群:初学者和中级程序员,尤其是希望快速掌握Windows桌面应用开发的人群。 使用场景及目标:①掌握VB的基础语法和开发环境;②学会使用VB创建复杂的用户界面和功能完整的应用程序;③理解数据库操作、文件管理和网络编程等高级主题。 其他说明:Visual Basic是一种简单易学且功能强大的编程语言,尤其适合用于开发Windows桌面应用。文中不仅覆盖了基础知识,还包括了大量的实用案例和技术细节,帮助读者快速提升编程技能。
基于java的疫情期间高校防控系统开题报告.docx
基于springboot+vue社区老年人帮扶系统源码数据库文档.zip
基于java的超市商品管理系统的开题报告.docx
基于SpringBoot房屋买卖平台源码数据库文档.zip
xdu限通院23微处理器系统与应用大作业(两只老虎),适应于汇编语言keil软件,
<项目介绍> - 新闻类网站系统,基于SSM(Spring、Spring MVC、MyBatis)+MySQL开发,高分成品毕业设计,附带往届论文 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------
基于java的学生网上请假系统的开题报告.docx
社会经济繁荣发展的今天,电子商务得到了飞速发展,网上交易越来越彰显出其独特的优越性,在人们的日常生活中,出现了各种类型的交易网站。其中一个就是车辆易主交易网站,它是一个服务于用户买卖二手车辆的交易网站,为用户提供了平等互利、方便快捷的网上交易平台,通过这一类型的网站,用户可自由出售和购买车辆。 本课题主要根据车辆本身的特性,充分发挥互联网的特点与优势,构建一个以二手车辆为商品、基于互联网平台的车辆易主业务交易管理系统,并根据车辆易主业务交易管理系统的应用需求,进行需求分析,进而对网站系统作规划设计。采用IDEA为运行平台,以SSH为框架,运用HTML语言、JSP技术、MySql数据库、JSP与后台数据库链接等关键技术建设二手车网上交易系统,构建车辆易主交易系统的会员注册与登录,网站首页展示、用户发布商品车辆,用户求购商品车辆,分页浏览、购物系统、用户后台管理、管理员用户后台管理等功能,并使这些功能得以实现并更好为用户服务。网站整体构建完成且测试成功后,用户可以进入网站进行注册、登录,登录后,用户可以在网站上发布自己的闲置车辆或者寻找想要购买的车辆,还可以收藏车辆,管理发布和收藏的车辆,
SQLite3的向量扩展库,windows dll,版本0.1.5
基于C++实现(控制台)商品库存管理系统