如何以编程方式禁用 Eclipse“需要密码”对话?

发布于 2024-10-12 03:13:56 字数 140 浏览 8 评论 0原文

当我尝试使用错误的用户名和密码连接到某些远程服务器时,出现“需要密码”Eclipse 对话框。

奇怪的是,Eclipse 平台首先收到我的响应并显示对话框,然后才到达我的 try/catch 块。

我只想手动或以编程方式禁用此对话框。

I get "Password Required" eclipse dialog when i try to connect to some remote server with wrong user name and password.

The strange thing is that the Eclipse platform first gets my response and show the dialog and only then it reaches my try/catch block.

I just want to disable this dialog manually or programmatically.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒绊 2024-10-19 03:13:56

窗口-->偏好设置 -->一般-->网络连接 -->将活动提供商设置为直接

Window --> Preferences -- > General --> Network Connections --> Set Active Provider to Direct

忆沫 2024-10-19 03:13:56
  1. 转到窗口菜单 ->首选项
  2. 选择常规 -> 网络连接
  3. 此页面将在下拉列表中将活动提供程序设置为手动/本机。
  4. 将其更改为“直接”
  1. Go to Window Menu -> Preferences
  2. select General->Network Connections
  3. This page will have Active Provider as Manual/Native in drop down .
  4. Change it to "Direct"
迷爱 2024-10-19 03:13:56

在发送请求之前使用此代码:

// use default authenticator in order to catch
// all connectivity exceptions and provide appropriate
// error message
// prevents eclipse from displaying "Password Required" dialog
Authenticator.setDefault(new Authenticator() 
{
});

Use this code before you send a request:

// use default authenticator in order to catch
// all connectivity exceptions and provide appropriate
// error message
// prevents eclipse from displaying "Password Required" dialog
Authenticator.setDefault(new Authenticator() 
{
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文