如果文件已存在,我想使用Apache Commons VFS将文本附加到文件中,如果文件不存在,则创建包含文本的新文件。
查看Vav的Javadoc,看起来FileContent类中的getOutputStream(boolean bAppend)方法可以完成这项工作,但经过相当广泛的Google搜索后,我无法弄清楚如何使用getOutputStream将文本追加到文件中。
我将与VFS一起使用的文件系统是本地文件(file://)或CIFS(smb://)。
使用VFS的原因是我正在处理的程序需要能够使用特定的用户名/密码写入CIFS共享,这与执行程序的用户不同,我希望能够灵活地写入本地文件系统或共享因此我不只是使用JCIFS。
如果有人能指出我正确的方向或提供一段代码,我将非常感激。
答案 0 :(得分:1)
我不熟悉VFS,但您可以使用PrintWriter包装OutputStream,并使用它来附加文本。
PrintWriter pw = new PrintWriter(outputStream);
pw.append("Hello, World");
pw.flush();
pw.close();
请注意,PrintWriter使用默认字符编码。
答案 1 :(得分:1)
以下是使用Apache Commons VFS的方法:
FileSystemManager fsManager;
PrintWriter pw = null;
OutputStream out = null;
try {
fsManager = VFS.getManager();
if (fsManager != null) {
FileObject fileObj = fsManager.resolveFile("file://C:/folder/abc.txt");
// if the file does not exist, this method creates it, and the parent folder, if necessary
// if the file does exist, it appends whatever is written to the output stream
out = fileObj.getContent().getOutputStream(true);
pw = new PrintWriter(out);
pw.write("Append this string.");
pw.flush();
if (fileObj != null) {
fileObj.close();
}
((DefaultFileSystemManager) fsManager).close();
}
} catch (FileSystemException e) {
e.printStackTrace();
} finally {
if (pw != null) {
pw.close();
}
}