Most visited

Recently visited

Added in API level 1

PasswordAuthentication

public final class PasswordAuthentication
extends Object

java.lang.Object
   ↳ java.net.PasswordAuthentication


PasswordAuthentication类是Authenticator使用的数据持有者。 它只是一个用户名和密码的存储库。

也可以看看:

Summary

Public constructors

PasswordAuthentication(String userName, char[] password)

根据给定的用户名和密码创建一个新的 PasswordAuthentication对象。

Public methods

char[] getPassword()

返回用户密码。

String getUserName()

返回用户名。

Inherited methods

From class java.lang.Object

Public constructors

PasswordAuthentication

Added in API level 1
PasswordAuthentication (String userName, 
                char[] password)

根据给定的用户名和密码创建一个新的 PasswordAuthentication对象。

请注意,给定的用户密码在存储在新的 PasswordAuthentication对象中之前已被克隆。

Parameters
userName String: the user name
password char: the user's password

Public methods

getPassword

Added in API level 1
char[] getPassword ()

返回用户密码。

请注意,此方法返回对密码的引用。 在不再需要密码信息后,调用者有责任清除密码信息。

Returns
char[] the password

getUserName

Added in API level 1
String getUserName ()

返回用户名。

Returns
String the user name

Hooray!