使用jcifs 操作共享文件 常见问题
2018-06-18 02:06:54来源:未知 阅读 ()
问题描述:使用jcifs jar包操作共享文件,将本地文件上传至服务器共享区遇见Exception:jcifs.smb.SmbException: The network name cannot be found. 但是同样的代码将文件上传至虚拟机共享区就可以。 本机操作系统:win10,服务器:winserver 2012,虚拟机:winserver 2008
代码如下:
InputStream in = null;
OutputStream out = null;
//本地文件位置
File localFile = new File("F:"+File.separator+"test"+File.separator+"cc.jpg");
String fileName = localFile.getName();
//存放文件的共享文件夹目录
String remotePhotoUrl = "smb://192.168.56.142/Windchill/test";
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("", "winserver", "!qaz2wsx");
SmbFile remoteFile = new SmbFile(remotePhotoUrl+File.separator+fileName,auth);
//建立连接
remoteFile.connect();
in = new BufferedInputStream(new FileInputStream(localFile));
out = new BufferedOutputStream(new SmbFileOutputStream(remoteFile));
byte[] buffer = new byte[2048];
int len = 0;
while((len = in.read(buffer, 0, buffer.length))!=-1) {
out.write(buffer, 0, len);
}
out.flush();
out.close();
in.close();
问题原因:win10 与winserver 2012 文件分隔符有区别
解决办法: SmbFile remoteFile = new SmbFile(remotePhotoUrl+File.separator+fileName,auth);
改为:SmbFile remoteFile = new SmbFile(remotePhotoUrl+"/"+fileName,auth);便可以进行文件上传
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 学习Java 8 Stream Api (4) - Stream 终端操作之 collect 2020-06-11
- 聊聊 OAuth 2.0 的 token expire_in 使用 2020-06-08
- 为什么阿里巴巴Java开发手册中强制要求接口返回值不允许使用 2020-06-06
- 学习笔记之方法引用 2020-06-06
- idea使用小技巧(一) 2020-06-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash