ImageVerifierCode 换一换
格式:DOCX , 页数:141 ,大小:103.92KB ,
资源ID:138379      下载积分:5 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-138379.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(基于java小型超市管理系统.docx)为本站会员(h****)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

基于java小型超市管理系统.docx

1、 1 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.Arrays; import java.util.Scanner; public class Mytest static int sign=0;/good

2、name 数组第一个空下标号 static int sign1=0;/cname 数组第一个空下标号 static String cpass=new String20;/存放售货员名称 static String cname=new String20;/存放售货员登入密码 static String goodname=new String20;/存放商品名称 static double goodprice=new double20;/存放商品价格 static int goodout=new int20;/存放商品销售量 static int goodnum=new int20;/存放商品数量

3、 public static void main(String args)throws Exception cname0=“ZhouTian“;/初始的售货员名称 2 cpass0=“723“; /初始的售货员密码 createArrays(); readArrays(“goodname“);/将文件中的内容读入到相应的数组里 readArrays(“goodprice“); readArrays(“goodnum“); readArrays(“cname“); readArrays(“cpass“); readArrays(“goodout“); menu();/登入之后加载的主菜单 /*

4、* 加载登入菜单 */ private static void menu() Scanner scan = new Scanner(System.in); System.out.println(“ttt 欢迎使用商超购物管理系统 n“); System.out.println(“tttt1.登录系统 n“); System.out.println(“tttt2.退出 “); System.out.println(“*3 *“); System.out.println(“请选择,输入数字 : “); int a = scan.nextInt(); switch (a) case 0: Syste

5、m.out.println(“退出! “);/按 0不 登入 case 1: System.out.println(“请输入用户名: “);/ 查找售货员姓名是否存在,与所对应的密码是否匹配 String name = scan.next(); System.out.println(“请输入密码: “); String pass = scan.next(); int flage = 0; int ff = 0; for (int i = 0; i cname.length; i+) if (name.equals(cnamei) flage = 1;/售货员的名称匹配 flage=1; ff

6、= i; break; if (flage = 1) /名称匹配之后再匹配密码 4 if (pass.equals(cpassff) loadmenu1();/密码也匹配之后再允许登入 else System.out.println(“密码错误! “); else System.out.println(“该用户名不具有权限 “); break; case 2: System.out.println(“谢谢您的使用 !“); break; default: break; /* * ,创建文件,将数组信息存入到各文件中 , */ static void createArrays() 5 Buffe

7、redWriter bw = null; try File file1 = new File(“d:gname.txt“); if (!file1.exists() bw = new BufferedWriter(new FileWriter(“d:gname.txt“); String content1 = strToString(goodname);/数组内容转换成字符串 bw.write(content1);/写入 bw.close(); File file2 = new File(“d:gprice.txt“); if (!file2.exists() bw = new Buffere

8、dWriter(new FileWriter(“d:gprice.txt“); String content2 = doubleToString(goodprice);/数组内容转换成字符串 bw.write(content2);/写入 bw.close(); File file3 = new File(“d:gnum.txt“); 6 if (!file3.exists() bw = new BufferedWriter(new FileWriter(“d:gnum.txt“); String content3 = intToString(goodnum);/数组内容转换成字符串 bw.wr

9、ite(content3);/写入 bw.close(); File file4 = new File(“d:cname.txt“); if (!file4.exists() bw = new BufferedWriter(new FileWriter(“d:cname.txt“); String content4 = strToString(cname);/数组内容转换成字符串 bw.write(content4);/写入 bw.close(); File file5 = new File(“d:cpass.txt“); if (!file5.exists() bw = new Buffer

10、edWriter(new FileWriter(“d:cpass.txt“); String content5 = strToString(cpass);/数组内容7 转换成字符串 bw.write(content5);/写入 bw.close(); File file6 = new File(“d:gout.txt“); if (!file6.exists() bw = new BufferedWriter(new FileWriter(“d:gout.txt“); String content5 = intToString(goodout);/数组内容转换成字符串 bw.write(con

11、tent5);/写入 bw.close(); catch (IOException e) e.printStackTrace(); /* * 登入之后加载商超购物管理系统 */ 8 static void loadmenu1() System.out.println(“欢迎进入商超购物管理系统! “); System.out.println(“tttt商超购物管理系统 “); System.out .println(“*“); System.out.println(“tttt1.商品维护 “); System.out.println(“tttt2.前台收银 “); System.out.pri

12、ntln(“tttt3.商品管理 “); System.out.println(“tttt4.退出 “); System.out.println(“*“); System.out.println(“请选择,输入数字或按 0退出: “); Scanner scan = new Scanner(System.in); int a = scan.nextInt(); switch (a) case 0: System.out.println(“谢谢您的使用 !“); break; case 1: 9 System.out.println(“执行显示商品维护菜单 “); loadmenu2(); br

13、eak; case 2: System.out.println(“执行前台收银 “); loadmenu6(); break; case 3: System.out.println(“执行商品管理 “); loadmenu7(); break; default: break; /* * 在商超购物管理系统中按 1键时 */ static void loadmenu2() 10 System.out.println(“tttt 商超购物管理系统 商品维护 “); System.out .println(“*“); System.out.println(“tttt1.添加商品 t“); Syste

14、m.out.println(“tttt2.更改商品 t“); System.out.println(“tttt3.删除商品 t“); System.out.println(“tttt4.显示所有 商品 t“); System.out.println(“tttt5.查询商品 t“); System.out .println(“*“); System.out.println(“请选择,输入数字或按 0 返回上一级菜单: “); Scanner scan = new Scanner(System.in); int b = scan.nextInt(); switch (b) case 0: loadmenu1();

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。