How to save a document that has been typed in MS Word via Java application?
843829Jan 15 2002 — edited Jan 16 2002I'm working on a java application that runs Word Macros by the following code to add or edit some documnets:
Runtime.getRuntime().exec(
wordPath +
JWintouchConstants.BLANK_STRING +
docName +
JWintouchConstants.BLANK_STRING +
macroName
);
I need to save these documents via a java interface instead of MS Word because they should be saved on a database server with different operating system.
I'll be appreciated if someone helps me.