尝试修改另一台计算机上的excel。传递IP地址,用户名,密码和文件路径以访问和修改文件,但在new SmbFileInputStream(sFile)
处获取NullPointerException。是什么原因呢?
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("domin", "username", "password");
String path = "smb:\\\\<IPaddress>\\C$\\<FolderName>\\File%20-%20Input.xlsx";
SmbFile sFile = new SmbFile(path, auth);
try {
SmbFileInputStream inputStream = new SmbFileInputStream(sFile);
Workbook workbook = WorkbookFactory.create(inputStream);
Sheet sheet = workbook.getSheetAt(0);
int rowCount = sheet.getLastRowNum(),i=0;
Cell cell;
for(ForemostReservedDataDO obj : unsavedRecords){
i++;
Row row = sheet.createRow(rowCount+i);
cell = row.createCell(0);
cell.setCellValue(obj.getPolicyNum());
cell = row.createCell(1);
cell.setCellValue("Recreational Value");
}
inputStream.close();
SmbFileOutputStream sfos = new SmbFileOutputStream(sFile);
workbook.write(sfos);
workbook.close();
sfos.close();
} catch (EncryptedDocumentException | InvalidFormatException | IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
全栈
SEVERE: Servlet.service() for servlet [spring-dispatcher] in context with path [/Foremost] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
java.lang.NullPointerException
at jcifs.smb.ServerMessageBlock.writeString(ServerMessageBlock.java:213)
at jcifs.smb.ServerMessageBlock.writeString(ServerMessageBlock.java:202)
at jcifs.smb.SmbComNTCreateAndX.writeBytesWireFormat(SmbComNTCreateAndX.java:170)
at jcifs.smb.AndXServerMessageBlock.writeAndXWireFormat(AndXServerMessageBlock.java:101)
at jcifs.smb.AndXServerMessageBlock.encode(AndXServerMessageBlock.java:65)
at jcifs.smb.SmbTransport.doSend(SmbTransport.java:439)
at jcifs.util.transport.Transport.sendrecv(Transport.java:67)
at jcifs.smb.SmbTransport.send(SmbTransport.java:655)
at jcifs.smb.SmbSession.send(SmbSession.java:238)
at jcifs.smb.SmbTree.send(SmbTree.java:119)
at jcifs.smb.SmbFile.send(SmbFile.java:775)
at jcifs.smb.SmbFile.open0(SmbFile.java:989)
at jcifs.smb.SmbFile.open(SmbFile.java:1006)
at jcifs.smb.SmbFileInputStream.<init>(SmbFileInputStream.java:73)
at jcifs.smb.SmbFileInputStream.<init>(SmbFileInputStream.java:65)
at com.Foremost.Controllers.DataDownController.saveReservedData(DataDownController.java:217)
答案 0 :(得分:1)
您的JCIFS版本似乎已过时,并且与远程系统不兼容。升级到最新的JCIFS(当前版本:2.1.3,https://github.com/codelibs/jcifs)或jcifs-ng(https://github.com/AgNO3/jcifs-ng),链接的JCIFS现在是其中的分支。
以下是一些示例代码,说明如何使用jcifs-ng通过SMB读取文件:
String fileUrl = "smb://netserver/some/path/to/file.xls";
Properties cifsProps = new Properties();
cifsProps.setProperty("jcifs.smb.client.domain", "my.domain.int");
cifsProps.setProperty("jcifs.smb.client.username", USER_NAME);
cifsProps.setProperty("jcifs.smb.client.password", PASSWORD);
Configuration config = new PropertyConfiguration(cifsProps);
BaseContext context = new BaseContext(config);
SmbResource resource = context.get(fileUrl);
if (!(resource instanceof SmbFile)) {
throw new CIFSException("File URL does not point to a file on a network share");
}
try (InputStream in = ((SmbFile) resource).getInputStream()) {
// TODO read from in
} finally {
context.close();
}
好吧,我认为您可以弄清楚:-)
答案 1 :(得分:0)
最有可能的问题是您的sFile
对象是null
。
检查所提供文件的路径。