Tag: windows share

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 ) […]