我的myeclipse缺少sun.misc.Base64Encoder
http://blog.csdn.net/wang9258/article/details/17764985 解决方法再此~
导入jar包即可,如果是用maven管理的可以使用下面方法导入
<dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.47</version> </dependency>
不要使用sun.misc.Base64Encoder,这个是当年sun公司包含在jre中不推荐使用的方法,很不安全
推荐使用commons.codec方法,视频后面有
用sun.misc.Base64Encoder的你就不用管了
你去找下jar包导进去呗