• 大小: 414KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-01-01
  • 语言: Java
  • 标签: java  

资源简介

用java语言实现的驾校预约系统,在eclipse中测试通过,可做java大作业项目的参考。 design.docx: 设计要求; src: 源码 doc:javadoc文档 run.bat: 批处理通过jar包方式可直接点击运行。 test1.bat、test2.bat:自己写的测试用例

资源截图

代码片段和文件信息


import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.text.*;
import java.util.ArrayList;
import java.util.Scanner;
import appointment.service.Service;

/**
 * 驾校预约管理系统主程序
 * @author ccg
 * @since 1.0
 */
public class AppointmentService {
/**
 * 程序主方法
 * @param args 参数
 * @throws ParseException 抛出日期格式异常
 * @throws IOException 抛出IO异常
 */
public static void main(String[] args) throws ParseException  IOException{
Service serve = new Service();
SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss“);

System.out.println(“ 欢迎来到驾校预约系统“);
Scanner reader = new Scanner(System.in);
while(true) {
System.out.print(“$“);
String[] command = null;

if(args.length == 0) { //若主函数没有传入参数,则读取

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2018-06-08 15:17  .classpath
     文件         414  2018-06-21 22:00  .project
     目录           0  2018-06-21 22:03  bin\
     文件        5205  2018-06-21 22:03  bin\AppointmentService.class
     目录           0  2018-06-21 22:03  bin\appointment\
     目录           0  2018-06-21 22:03  bin\appointment\service\
     文件        7688  2018-06-21 22:03  bin\appointment\service\Service.class
     目录           0  2018-06-21 22:03  bin\appointment\user\
     文件        1420  2018-06-21 22:03  bin\appointment\user\Arrangement.class
     文件        2106  2018-06-21 22:03  bin\appointment\user\Contract.class
     文件        1103  2018-06-21 22:03  bin\appointment\user\User.class
     文件         115  2018-06-11 20:35  build.bat
     文件      185290  2018-06-12 19:19  design.docx
     目录           0  2018-06-21 21:57  doc\
     文件        8890  2018-06-12 16:12  doc\AppointmentService.html
     文件        1116  2018-06-12 16:12  doc\allclasses-frame.html
     文件        1016  2018-06-12 16:12  doc\allclasses-noframe.html
     目录           0  2018-06-21 21:57  doc\appointment\
     目录           0  2018-06-21 21:57  doc\appointment\service\
     文件       16654  2018-06-12 16:12  doc\appointment\service\Service.html
     目录           0  2018-06-21 21:57  doc\appointment\service\class-use\
     文件        4176  2018-06-12 16:12  doc\appointment\service\class-use\Service.html
     文件         790  2018-06-12 16:12  doc\appointment\service\package-frame.html
     文件        4664  2018-06-12 16:12  doc\appointment\service\package-summary.html
     文件        4405  2018-06-12 16:12  doc\appointment\service\package-tree.html
     文件        3921  2018-06-12 16:12  doc\appointment\service\package-use.html
     目录           0  2018-06-21 21:57  doc\appointment\user\
     文件       14731  2018-06-12 16:12  doc\appointment\user\Arrangement.html
     文件       19083  2018-06-12 16:12  doc\appointment\user\Contract.html
     文件       13235  2018-06-12 16:12  doc\appointment\user\User.html
     目录           0  2018-06-21 21:57  doc\appointment\user\class-use\
............此处省略49个文件信息

评论

共有 条评论