使用jcifs读取文件的最简单方法

Bla*_*ine 2 java jcifs

我试图使用外部jcifs库从网络共享中读取文件.我可以找到的大多数用于读取文件的示例代码非常复杂,可能不必要.我找到了一种写入文件的简单方法,如下所示.有没有办法使用类似的语法读取文件?

SmbFile file= null;
try {
    String url = "smb://"+serverAddress+"/"+sharename+"/TEST.txt";
    NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null, username, password);
    file = new SmbFile(url, auth);
    SmbFileOutputStream out= new SmbFileOutputStream(file);
    out.write("test string".getBytes());
    out.flush();
    out.close();
} catch(Exception e) {
    JOptionPane.showMessageDialog(null, "ERROR: "+e);
}
Run Code Online (Sandbox Code Playgroud)

Mar*_*zek 10

SmbFile file = null;
byte[] buffer = new byte[1024];
try {
    String url = "smb://"+serverAddress+"/"+sharename+"/TEST.txt";
    NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null, username, password);
    file = new SmbFile(url, auth);
    try (SmbFileInputStream in = new SmbFileInputStream(file)) {
        int bytesRead = 0;
        do {
            bytesRead = in.read(buffer)
            // here you have "bytesRead" in buffer array
        } 
        while (bytesRead > 0);
    }
} catch(Exception e) {
    JOptionPane.showMessageDialog(null, "ERROR: "+e);
}
Run Code Online (Sandbox Code Playgroud)

或者甚至更好,假设您正在处理文本文件 - 使用BufferedReaderJava SDK:

try (BufferedReader reader = new BufferedReader(new InputStreamReader(new SmbFileInputStream(file)))) {
    String line = reader.readLine();
    while (line != null) {
        line = reader.readLine();
    }
}
Run Code Online (Sandbox Code Playgroud)

并写道:

try (BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new SmbFileOutputStream(file)))) {
    String toWrite = "xxxxx";
    writer.write(toWrite, 0, toWrite.length());
}
Run Code Online (Sandbox Code Playgroud)


小智 6

    try {
        String url = "smb://" + serverAddress + "/" + sharename + "/test.txt";
        NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(DOMAIN, USER_NAME, PASSWORD);
        String fileContent = IOUtils.toString(new SmbFileInputStream(new SmbFile(url, auth)), StandardCharsets.UTF_8.name());
        System.out.println(fileContent);
    } catch (Exception e) {
        System.err.println("ERROR: " + e.getMessage());
    }
Run Code Online (Sandbox Code Playgroud)