Online Word Document editing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • honeys
    New Member
    • Jan 2008
    • 3

    Online Word Document editing

    Hi ,

    I am doing a website that shows one word document to everyone. If the users open that and would like to edit the information they can edit.But when they go to save button and saves it, it must be changed on the website such that the users who browses the website can view that........... .
    Can anyone provide me the necessary code for saving the document at the server side.

    Thanks in Advance
  • Shashi Sadasivan
    Recognized Expert Top Contributor
    • Aug 2007
    • 1435

    #2
    is the user editing the document in your webpage or downloads it , changes and uploads it back again?

    It seems to be a simple overwrite of the file if the user has to download it and then upload it

    Comment

    • honeys
      New Member
      • Jan 2008
      • 3

      #3
      Not downloading and uploading...... .we are supposed to edit in the browser itself

      Comment

      • Rebecca999
        New Member
        • Feb 2016
        • 3

        #4
        Without uploading or downloading, you can try Ace-offix. The following code is about how to save document online directly.
        Code:
        FileRequest freq = new FileRequest(request, response);
        freq.saveToFile(request.getSession().getServletContext().getRealPath("doc/") + "\\" + freq.getFileName());
        freq.close();

        Comment

        Working...