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
總結
以上是生活随笔為你收集整理的java jcifs 速度_java – JCIFS:文件检索太慢而无法使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java ip吸附_IP层的封装(Jav
- 下一篇: java table集合_Java集合类