码迷,mamicode.com
首页 > Web开发 > 详细

BASE64Encoder 的使用

时间:2015-04-14 07:23:16      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:base64encoder

public static void main(String[] args) throws IOException {


BASE64Encoder encoder = new BASE64Encoder();

System.out.println("Please input user name:");

String username= new BufferedReader(new InputStreamReader(System.in)).readLine();

System.out.println(encoder.encode(username.getBytes()));

System.out.println("please input password:");

String password=new BufferedReader(new InputStreamReader(System.in)).readLine();

System.out.println(encoder.encode(password.getBytes()));

}


BASE64Encoder 的使用

标签:base64encoder

原文地址:http://5618698.blog.51cto.com/5608698/1632039

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!