ブラウザでワード文書を開こうとしています。したがって、ユーザーがそれを表示したい場合、ブラウザ自体でドキュメントを開くことができるはずです。これを達成する方法はありますか??
現在のコード:
response.addHeader("Content-Type", "application/msword; charset=utf-8")
response.addHeader("Content-disposition", "inline; filename="+"\"testdoucment.doc\"")
response.setContentLength(content.getBytes().length)
response.outputStream<<content.bytes
response.outputStream.flush()
response.flushBuffer()