java writing problem in office org(linux) document
hello friends
i have written a code for writing to a file in java
try {
BufferedWriter out = new BufferedWriter(new FileWriter(file, true));
out.write("\n");
out.write("Document Reviewed");
out.close();
} catch (IOException e) {
}
but i have a problem.
if i create a document using office org the file will not be edited.
and if i create a document using kwrite i can able to write on it.
can anybody help me out please?

