zoukankan      html  css  js  c++  java
  • Java生成BASE64编码

    1.所需jar包:

        BASE64Encoder.jar

    2.在导包过程中,可能会出现工程不识别的情况。即:不能找到BASE64Encoder的jar包。此时,可以有两种方法解决这个问题:

        a.  只需要在project build path 中先移除JRE System Liberary, 再添加库JRE System Liberary ,重新编译后就一切正常了。

        b. Windows--->Preferences--->Java--->Compiler--->Errors/Warnings--->Deprecated and trstricted API --->Forbidden reference (access rules):--->change        to warning 

         ps:我是用方法a解决的这个问题。

    3.详细代码实现如下:

     1 package com.itRed.base64Util;
     2 
     3 import java.io.BufferedReader;
     4 import java.io.IOException;
     5 import java.io.InputStreamReader;
     6 
     7 import sun.misc.BASE64Encoder;
     8 
     9 public class Base64Util {
    10 
    11 /**
    12 * 生成Base64编码
    13 * @param <BASE64Encoder>
    14 * @param args
    15 */
    16 public static void main(String[] args) throws IOException{
    17 // TODO Auto-generated method stub
    18 
    19 BASE64Encoder encoder=new BASE64Encoder();
    20 System.out.println("please input username:");
    21 String username=new BufferedReader(
    22 new InputStreamReader(System.in)).readLine();
    23 System.out.println(encoder.encode(username.getBytes()));
    24 System.out.println("please input your password:");
    25 String password=new BufferedReader(
    26 new InputStreamReader(System.in)).readLine();
    27 System.out.println(encoder.encode(password.getBytes()));
    28 }
    29 
    30 }
  • 相关阅读:
    thinkphp 学习1-模型
    apache 2.4目录权限
    标头 header()函数的用法
    PHP面试题一
    php学习
    如何执行超过一百兆(100MB)的sql脚本?
    jquery-numberformatter插件
    xpath 获取父级,和同级
    Vue el-table 行编辑验证、重置
    Vue 弹窗一个新增编辑页面
  • 原文地址:https://www.cnblogs.com/itred/p/3636885.html
Copyright © 2011-2022 走看看