How to stream audio/video files such as MP3, MP4, AVI, etc using a Servlet
问题 I would like to stream my audio/video files to web using servlet. I made an attempt with the following servlet: protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { File file = new File("/Users/myfolder/Documents/workspace/love.mp3"); response.setContentType(getServletContext().getMimeType(file.getName())); response.setContentLength((int) file.length()); Files.copy(file.toPath(), response.getOutputStream()); } And the following