JAVA进阶4.4——食品库存管理

import java.util.*;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Test {
	public static void main(String[] args)throws Exception{
		Spgl shipin=new Spgl();
		BufferedReader sr=new BufferedReader(new InputStreamReader(System.in));
		while(true){
			System.out.println("请按提示选择以下功能");
			System.out.println("添加食品请按1");
			System.out.println("查找食品信息请按2");
			System.out.println("修改食品价格请按3");
			System.out.println("删除食品请按4");
			System.out.println("退出请按0");
			
			String str=sr.readLine();
			if(str.equals("1")){
				System.out.println("请输入食品编号");
				String bh=sr.readLine();
				System.out.println("请输入食品名称");
				String mc=sr.readLine();
				System.out.println("请输入食品价格");
				float jg=Float.parseFloat(sr.readLine());
				
				Sp sp=new Sp(bh,mc,jg);
				shipin.addsp(sp);
			}
			else if(str.equals("2")){
				System.out.println("请输入食品编号");
				String bh=sr.readLine();
				shipin.spxx(bh);
			}
			else if(str.equals("3")){
				System.out.println("请输入食品编号");
				String bh=sr.readLine();
				System.out.println("请输入新的价格");
				float jg=Float.parseFloat(sr.readLine());
				shipin.spjg(bh,jg);
			}
			else if(str.equals("4")){
				System.out.println("请输入食品编号");
				String bh=sr.readLine();
				shipin.delsp(bh);
			}
			else if(str.equals("0")){
				System.out.println("感谢您的使用,再见");
				System.exit(0);
			}
			else{
				System.out.println("输入有误");
			}
			
			
		}
	}
}

class Sp {
	private String bianhao;
	private String mingcheng;
	private float jiage;

	Sp(String bianhao,String mingcheng,float jiage){
		this.bianhao=bianhao;
		this.mingcheng=mingcheng;
		this.jiage=jiage;
	}

	public String getBianhao() {
		return bianhao;
	}

	public void setBianhao(String bianhao) {
		this.bianhao = bianhao;
	}

	public String getMingcheng() {
		return mingcheng;
	}

	public void setMingcheng(String mingcheng) {
		this.mingcheng = mingcheng;
	}

	public float getJiage() {
		return jiage;
	}

	public void setJiage(float jiage) {
		this.jiage = jiage;
	}
}

class Spgl {
	private ArrayList aa = null;

	Spgl() {   //注意这个操作,全场最佳。
		aa = new ArrayList();
	}

	public void addsp(Sp sp) {
		aa.add(sp);
		System.out.println("添加新食品成功!");
	}

	public void spxx(String bh) {
		int i;
		for (i = 0; i < aa.size(); i++) {
			Sp sp = (Sp) aa.get(i);
			if (sp.getBianhao().equals(bh)) {
				System.out.println("该食品的信息为:");
				System.out.println("食品编号:" + bh);
				System.out.println("食品名称:" + sp.getMingcheng());
				break;
			}
		}
		if (i == aa.size())
			System.out.println("对不起,无此食品!");
	}

	public void spjg(String bh, float jg) {
		int i;
		for (i = 0; i < aa.size(); i++) {
			Sp sp = (Sp) aa.get(i);
			if (sp.getBianhao().equals(bh)) {
				sp.setJiage(jg);
				System.out.println("修改食品价格成功!");
				break;
			}
		}
		if (i == aa.size())
			System.out.println("对不起,没有找到相应的食品,修改失败!");
	}

	public void delsp(String bh) {
		int i;
		if (aa.size() == 0)
			System.out.println("对不起,仓库中已没有任何食品!");
		for (i = 0; i < aa.size(); i++) {
			Sp sp = (Sp) aa.get(i);
			if (sp.getBianhao().equals(bh)) {
				aa.remove(i);
				System.out.println("删除食品成功!");
				break;
			}
		}
		if ((i == aa.size()) && (aa.size() != 0)) {
			System.out.println("对不起,没有该食品!");
		}

	}

}

java项目package project.action.dialogAction; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JOptionPane; import project.dao.common.DbException; import project.dao.dataDao.LoginInfoDao; import project.dao.dataDaoImpl.LoginInfoDaoImpl; import project.view.dialog.AddLoginInfoDialog; import project.vo.LoginInfoVo; /** * 添加登录账号action * * @author Administrator * */ public class AddLoginInfoAction implements ActionListener { private AddLoginInfoDialog dialog; public AddLoginInfoAction(AddLoginInfoDialog dialog) { this.dialog = dialog; } public void actionPerformed(ActionEvent e) { String name = e.getActionCommand(); if (name.equals("确定")) { // 检验输入是否正确 if (dialog.checkInputValue()) { LoginInfoDao dao = null; LoginInfoVo vo = null; try { // 获得界面输入信息 vo = dialog.getInputInfo(); String confirm = dialog.getConfirm(); if (vo.getLog_pwd().equals(confirm)) { dao = new LoginInfoDaoImpl(); if (dao.insertLoginInfo(vo)) { // 打印提示信息 JOptionPane.showMessageDialog(null, "添加登录人员成功", "提示信息", JOptionPane.YES_OPTION); dialog.dispose(); } else { // 打印提示信息 JOptionPane.showMessageDialog(null, "添加登录人员失败", "提示信息", JOptionPane.YES_OPTION); } } else { // 如果密码确认输入错误,打印提示信息 JOptionPane.showMessageDialog(null, "密码确认错误,请重新输入", "提示信息", JOptionPane.YES_OPTION); } } catch (DbException ex) { JOptionPane.showMessageDialog(null, ex.getMessage(), "提示信息", JOptionPane.YES_OPTION); } } else { JOptionPane.showMessageDialog(null, "请确认输入是否完整正确", "提示信息", JOptionPane.YES_OPTION); } } else if (name.equals("取消")) { dialog.dispose(); } } }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值