注册

本文介绍了一个简单的Java程序,用于创建用户注册系统。该程序通过控制台接收用户输入的账号和密码,并利用Properties类将这些信息存储到本地文件中。文章展示了如何使用Scanner类获取输入,以及如何使用FileOutputStream和Properties来保存数据。
摘要由CSDN通过智能技术生成
package test;


import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.Scanner;


public class Reg {


public static void main(String[] args) throws IOException {
System.out.println("=========注册界面=========");
Scanner sc = new Scanner(System.in);
System.out.println("请输入账号:");
String name = sc.next();
System.out.println("请输入密码:");
String pwd = sc.next();

reg(name,pwd);


}


public static void reg(String name, String pwd){
// 1.创建properties对象
Properties prop = new Properties();


// 2.指定输出文件
FileOutputStream fos = null;

try {
fos = new FileOutputStream("F:\\stu.properties");


// 3.设置要输出的属性
prop.setProperty("userName", name);
prop.setProperty("pwd", pwd);


// 4.保存文件
prop.store(fos, "这是一个注释");

System.out.println("注册成功!");
} catch (IOException e) {
// e.printStackTrace();
System.out.println("注册失败!");
} finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}



}


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值