java 操作共享文件夹,使用java连接到Windows中的共享文件夹

这篇博客介绍如何通过Java代码实现对远程Windows机器上共享文件夹的访问,主要利用了JCIFS库中的SmbFile和NtlmPasswordAuthentication进行NTLM认证。示例代码展示了如何设置用户名和密码来连接并列出文件夹中的文件。
摘要由CSDN通过智能技术生成

I need to connect to a shared folder on a remote windows machine through java , where i put my domain authentication (username and password ) in the code , here is my code

File file = new File("\\\\theRemoteIP\\webapps");

File[] files = file.listFiles();

System.out.println("acssed done");

for (int i = 0; i < files.length; i++)

{

String name = files[i].getName();

System.out.println(name);

}

Thanks

解决方案

You should use SmbFile and NtlmPasswordAuthentication from JCIFS. Here is a simple piece of code to show you how to do :

String url = "smb://yourhost/yourpath/";

NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null, "user", "password");

SmbFile dir = new SmbFile(url, auth);

for (SmbFile f : dir.listFiles())

{

System.out.println(f.getName());

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值