我的Java支持的Webscript将存储库中的文件复制到temp文件夹,并根据需要对其进行编辑。在其工作期间,将生成新内容,并且必须将其写入创建的临时文件中。

但是有一个问题:下面的第一个代码或第二个代码都不会更新文件的内容。

ContentWriter contentWriter = this.contentService.getWriter(tempFile,
                               ContentModel.PROP_CONTENT, true);
contentWriter.putContent(content);


第二个:

`
WritableByteChannel byteChannel = contentWriter.getWritableChannel();
ByteBuffer buffer = ByteBuffer.wrap(content.getBytes());
byteChannel.write(buffer);
byteChannel.close();
`


如何更新文件内容?

最佳答案

这对我有用:

ContentWriter contentWriter = contentService.getWriter(noderef, ContentModel.PROP_CONTENT, true);
        contentWriter.setMimetype("text/csv");
        FileChannel fileChannel = contentWriter.getFileChannel(false);
        ByteBuffer bf = ByteBuffer.wrap(logLine.getBytes());
        try {
            fileChannel.position(contentWriter.getSize());
            fileChannel.write(bf);
            fileChannel.force(false);
            fileChannel.close();
        } catch (IOException e){
            e.printStackTrace();
        }


我将一行附加到现有文件,因此logLine是附加字符串。

10-08 00:26