日期:2014-05-18 浏览次数:20675 次
package com.yang.CH17; import javax.mail.*; import java.util.*; public class PopupAuthenticator extends Authenticator { String username, password; public PopupAuthenticator(String username, String password) { this.username = username; this.password = password; } public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(username, password); } }
<% : Authenticator auth = (Authenticator) new PopupAuthenticator("8888","haha"); : %>
<%@ page import="classes.Authenticator"%>;
------解决方案--------------------
放在classes下然后再放在和包名一样的文件夹下面
classes/com/yang/CH17
或者做成jar放在bin目录下