• 大小: 375KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: Java
  • 标签: Unit3  

资源简介

实现公交查询系统,而且带有GUI界面, 背景:本次实验需要你去完成本系统的初始数据读取。你需要完成ReadData.java 来实现从文件中读取对应的信息并且创建相应的对象。 为了完成本次实验,你需要完成类ReadData。下面步骤会引导你完成本次实验。 1.参考系统介绍了解系统运行流程,方式,结果。 2.参考实验介绍建立开发环境。 3.完成类ReadData中的方法:

资源截图

代码片段和文件信息

import java.io.*;
import java.util.*;
//import java.text.*;

/**
 * This class implements a gourmet coffee system.
 *
 * @author author name
 * @version 1.1.0
 * @see Product
 * @see Coffee
 * @see CoffeeBrewer
 * @see Catalog
 * @see OrderItem
 * @see Order
 * @see SalesFormatter
 * @see PlainTextSalesFormatter
 * @see HTMLSalesFormatter
 * @see xmlSalesFormatter
 */
public class GourmetCoffee  {

private static BufferedReader  stdIn =
new  BufferedReader(new  InputStreamReader(System.in));
private static PrintWriter  stdOut = new  PrintWriter(System.out true);
private static PrintWriter  stdErr = new  PrintWriter(System.err true);

private Sales  sales;

private SalesFormatter  salesFormatter;

/**
 * Loads data into the catalog and starts the a

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1114  2005-09-15 11:06  unit3\unit3实验作业\student-files\Catalog.class

     文件      10497  2005-09-15 11:05  unit3\unit3实验作业\student-files\Catalog.html

     文件       1295  2005-09-15 11:05  unit3\unit3实验作业\student-files\Coffee.class

     文件      15188  2005-09-15 11:05  unit3\unit3实验作业\student-files\Coffee.html

     文件        971  2005-09-15 11:06  unit3\unit3实验作业\student-files\CoffeeBrewer.class

     文件      11474  2005-09-15 11:05  unit3\unit3实验作业\student-files\CoffeeBrewer.html

     文件       7368  2005-09-07 11:04  unit3\unit3实验作业\student-files\GourmetCoffee.java

     文件       1309  2005-09-15 11:06  unit3\unit3实验作业\student-files\Order.class

     文件      11945  2005-09-15 11:05  unit3\unit3实验作业\student-files\Order.html

     文件        968  2005-09-15 11:06  unit3\unit3实验作业\student-files\OrderItem.class

     文件       9760  2005-09-15 11:05  unit3\unit3实验作业\student-files\OrderItem.html

     文件        979  2005-09-15 11:06  unit3\unit3实验作业\student-files\Product.class

     文件      11042  2005-09-15 11:05  unit3\unit3实验作业\student-files\Product.html

     文件         57  2005-09-15 11:05  unit3\unit3实验作业\student-files\resources\inherit.gif

     文件        760  2005-09-15 11:06  unit3\unit3实验作业\student-files\Sales.class

     文件       8929  2005-09-15 11:05  unit3\unit3实验作业\student-files\Sales.html

     文件      22082  2011-10-14 16:11  unit3\unit3实验作业\student-files.zip

     文件    3031993  2015-06-07 23:47  unit3\unit3实验作业\unit3实验作业.doc

    .......    176980  2015-04-24 16:37  unit3\unit3实验作业.rar

     目录          0  2015-05-10 17:39  unit3\unit3实验作业\student-files\resources

     目录          0  2015-05-10 17:39  unit3\unit3实验作业\student-files

     目录          0  2015-06-07 23:47  unit3\unit3实验作业

     目录          0  2015-05-10 17:28  unit3\新建文件夹

     目录          0  2015-05-10 17:28  unit3

----------- ---------  ---------- -----  ----

              3324711                    24


评论

共有 条评论

相关资源