HI everyone i am doing file handling in my spring MVC Application, i need to display Word file (.doc, .docx) file in my browser instead of downloading..
i am using this code for displaying file in browser,..
response.setHeader("Content-Disposition", "inline; filename=\"%s\"",
downloadFile.getName()");
with this code PDF, IMAGE File, and TXT
Files are showing in browser but not word file,
can you please help me how to do this ? i have go through different solutions in stackoverflow and google but i cannot find any thing.
PS: i don't want google docs for displaying word file.