优秀程序汇总

// 灵活的获取日期各种格式
Calendar c = Calendar.getInstance();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(format.format(c.getTime()));

建立用户到用户建表的步骤: 
Server
建立:create user jtb_std identified by "jtb_std";
授权:grant create session to jtb_std;
grant create table to jtb_std;
grant create tablespace to jtb_std;
grant create view to jtb_std;

grant unlimited tablespace to jtb_std;



ServletContext sc = request.getSession().getServletContext();
ApplicationContext appctx = WebApplicationContextUtils.getWebApplicationContext(sc);
SysUserInfoServiceImpl sysUserInfoService = (SysUserInfoServiceImpl) appctx.getBean("sysUserInfoService");

System.out.println(password);
System.out.println("根据用户名取得的密码");
SysUserInfo list = sysUserInfoService.getUserbyLoginName(username);
System.out.print(list.getLoginPassword());







//读取根目录下面的文件
public static String readProp(String key) throws Exception {
String ippath = "xx-db2.properties";
final Properties prop = new Properties();
String path = test.class.getClassLoader().getResource("").toURI().getPath();
FileInputStream fis = new FileInputStream(new File(path + ippath));
//加载文件流的属性
prop.load(fis);
return prop.getProperty(key);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值