能有如 C中的 scanf 函数
int choice;
do {
System. out .println( " ┏━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━┓ " );
System. out .println( " ┃★ ★★ ★ ★★ ★ ★职工管理系统主菜单界
面★ ★ ★★ ★ ★★ ★┃ " );
System. out .println( " ┣━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━┫ " );
System. out .println( " ┃ ★ ★ ★
1. 输入职工信息 ★ ★ ★ ┃" );
System. out .println( " ┃ ★
★ ★ 2. 预 览 职 工 信 息 ★ ★ ★
┃" );
System. out .println( " ┃ ★
★ ★ 3. 查找职工信息 ★ ★ ★ ┃
" );
System. out .println( " ┃ ★
★ ★ 4. 删除职工信息 ★ ★ ★ ┃" );
System. out .println( " ┃ ★ ★ ★
5. 读取已存数据 ★ ★ ★ ┃" );
System. out .println( " ┃ ★
★ ★ 6. 安 全 退 出 系 统 ★ ★ ★
┃" );
System. out .println( " ┗━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━┛ " );
System. out .print( " 请输入您需要的功能代号 (1--6):" );
choice=Integer. parseInt (buf.readLine());
switch (choice){
case 1:creat(staffOne); break ;
case 2:output(staffOne); break ;
case 3:search(staffOne); break ;
case 4:delete(staffOne); break ;
case 5:read(staffOne); break ;
case 6:save(staffOne); break ;
}
}
while (choice!=0);
}
void creat(staffInfo staffOne[]) throws IOException
{
final BufferedReader buf= new BufferedReader( new
评论0
最新资源