编程语言
首页 > 编程语言> > java – JCIFS:文件检索太慢而无法使用

java – JCIFS:文件检索太慢而无法使用

作者:互联网

我只是测试JCIFS访问Windows共享.完全无法使用它是非常缓慢的.

import jcifs.smb.*;

class First {
    public static void main(String[] args) throws Exception {
    try {
        //jcifs.Config.setProperty( "jcifs.netbios.wins", "192.168.1.220" );
        NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("domain.com", "Administrator", "password");

        SmbFile f = new SmbFile("smb://10.17.15.12/Share/xml/file.xml", auth);
        SmbFileInputStream in = new SmbFileInputStream(f);
        byte[] b = new byte[8192];
        int n;
        while(( n = in.read( b )) > 0 ) {
        System.out.write( b, 0, n );
        }
    } catch (SmbException smbe) {
        System.err.println(smbe.getNtStatus());
        System.err.println(smbe.toString());
        System.err.println(smbe.getCause());
    }
    }
}

初始输出需要很长时间,后续读取也很慢.任何想法如何使用它?我也可以使用任何替代方法编写Java代码以便携式方式访问Windows共享

解决方法:

我发现某处SmbFileInputStream没有自己的缓冲,因此是缓慢的原因.在BufferedInputStream中包装SmbFileInputStream解决了这个问题.

 SmbFile sFile = new SmbFile(path, authentication);

 BufferedInputStream buf = new BufferedInputStream(new SmbFileInputStream(sFile));

标签:java,samba,jcifs,windows-share
来源: https://codeday.me/bug/20190926/1821963.html