JCIFS读取远程服务器文件过慢的解决方法

与windows explorer打开相同的文件相比,JCIFS默认情况下要慢太多了。我找了大半天,总算找出了解决方法,增加如下配置,则读取速度会有质的飞跃,我这边从7s提升至0.2s:

1System.setProperty("jcifs.smb.client.dfs.disabled", "true");
至于原因嘛,我也不知道,我是从此网站捞到的一条配置:


http://samba.2283325.n4.nabble.com/Peformance-questions-td4644647.html

执行程序代码如下:

01private static final int BUFFER_SIZE = 1024;
02 
03public static void main(String[]args) throws Exception {
04    //SmbFile file = new SmbFile("smb://finchina;daieel:123456@192.168.100.246/Soft/sc8 key.txt");
05    //SmbFile file = new SmbFile("smb://10.15.97.181/xx部资料库/工作文档/查询逻辑.txt");d
06    //http://samba.2283325.n4.nabble.com/Peformance-questions-td4644647.html
07    System.setProperty("jcifs.smb.client.dfs.disabled", "true");
08        
09    long startTime = System.currentTimeMillis();
10    UniAddress dc = UniAddress.getByName("192.168.100.5"); 
11    NtlmPasswordAuthentication authentication = new NtlmPasswordAuthentication("fgina", "xiajl", "orange"); 
12    SmbSession.logon(dc, authentication); 
13    SmbFile file = new SmbFile("smb://192.168.100.5/edse/users.txt",  authentication); 
14     
15    ByteArrayOutputStream out = new ByteArrayOutputStream();
16    BufferedInputStream in = new BufferedInputStream(new SmbFileInputStream(file));
17    //SmbFileInputStream in = new SmbFileInputStream(file) ;  //建立smb文件输入流
18    byte buffer[] = new byte[BUFFER_SIZE] ;
19    int count = -1;
20    while((count = in.read(buffer,0,BUFFER_SIZE)) != -1) {
21        out.write(buffer, 0, count);
22    }
23    String content = new String(out.toByteArray(),"GBK");
24    in.close();
25    System.out.println(System.currentTimeMillis() - startTime);
26     
27    System.out.println(content);
28}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值