我是网络编程新手。 这是我的代码:
public class ComputerNetworks extends Authenticator {
private JDialog passwordDialog;
private JLabel mainLabel= new JLabel("Please enter username and password: ");
private JLabel userLabel = new JLabel("Username: ");
private JLabel passwordLabel = new JLabel("Password: ");
private JTextField usernameField = new JTextField(20);
private JPasswordField passwordField = new JPasswordField(20);
private JButton okButton = new JButton("OK");
private JButton cancelButton = new JButton("Cancel");
public ComputerNetworks( ) {
this("", new JFrame());
}
public ComputerNetworks(String username) {
this(username, new JFrame());
}
public ComputerNetworks(JFrame parent) {
this("", parent);
}
public ComputerNetworks(String username, JFrame parent) {
this.passwordDialog = new JDialog(parent, true);
Container pane = passwordDialog.getContentPane( );
pane.setLayout(new GridLayout(4, 1));
pane.add(mainLabel);
JPanel p2 = new JPanel( );
p2.add(userLabel);
p2.add(usernameField);
usernameField.setText(username);
pane.add(p2);
JPanel p3 = new JPanel( );
p3.add(passwordLabel);
p3.add(passwordField);
pane.add(p3);
JPanel p4 = new JPanel( );
p4.add(okButton);
p4.add(cancelButton);
pane.add(p4);
ActionListener al = new OKResponse( );
okButton.addActionListener(al);
usernameField.addActionListener(al);
passwordField.addActionListener(al);
cancelButton.addActionListener(new CancelResponse( ));
passwordDialog.pack( );
passwordDialog.setVisible(true);
}
private void show( ) {
String prompt = this.getRequestingPrompt( );
if (prompt == null) {
String site = this.getRequestingSite().getHostName( );
String protocol = this.getRequestingProtocol( );
int port = this.getRequestingPort();
if (site != null & protocol != null) {
prompt = protocol + "://" + site;
if (port > 0)
prompt += ":" + port;
} else {
prompt = "";
}
}
mainLabel.setText("Please enter username and password for "
+ prompt + ": ");
passwordDialog.pack();
passwordDialog.setVisible(true);
}
PasswordAuthentication response = null;
class OKResponse implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("OK clicked");
passwordDialog.setVisible(false);
// The password is returned as an array of
// chars for security reasons.
char[] password = passwordField.getPassword( );
String username = usernameField.getText( );
// Erase the password in case this is used again.
passwordField.setText("");
response = new PasswordAuthentication(username, password);
}
}
class CancelResponse implements ActionListener {
public void actionPerformed(ActionEvent e) {
passwordDialog.hide( );
// Erase the password in case this is used again.
passwordField.setText("");
response = null;
}
}
public PasswordAuthentication getPasswordAuthentication( ) {
this.show();
return this.response;
}
public static void main(String[] args) throws Exception {
Authenticator.setDefault(new ComputerNetworks());
URL u = new URL("http://www.google.co.in");
InputStream in = u.openStream();
}
}
我正在从IDE运行此代码。虽然我已经打开了一个带有URL的流,但问题是getPasswordAuthentication()
Authenticator
方法未被调用。
请帮忙。
提前致谢
答案 0 :(得分:2)
来自JavaDoc:
<强>的getPasswordAuthentication()强>
protected PasswordAuthentication getPasswordAuthentication()
在需要密码授权时调用。子类应覆盖默认实现,返回null。 返回: 从用户收集的PasswordAuthentication,如果没有提供,则为null。
google.co.in,据我所知,不需要密码授权。因此,不使用Authenticator
。尝试输入 要求身份验证的网址,看看是否有帮助。