In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
Editor to share with you what are the different ways to download JSP files, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!
1. The most direct and easiest way to download a JSP file is to put the file address directly into a link on the html page. The disadvantage of this is that the path of the file on the server is exposed, and there is no other control over the file download (such as permissions). I won't write an example this time.
two。 On the server side, convert the file into an output stream, write it to response, take the file to the browser with response, and the browser prompts the user whether he is willing to save the file locally. (examples of downloading JSP files are as follows)
3. Since it is a JSP file download, there is another way to download JSP files is to use Applet to download files. But first, customers have to trust your Applet Mini Program. This program accepts the data stream sent by servlet and writes it locally.
Servlet side exampl
Public void service (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {res.setContentType ("text/plain"); OutputStream outputStream = null; try {outputStream = res.getOutputStream (); popFile (srcFile, outputStream)); / / write the file with the file path srcFile to outputStream. } catch (IOException e) {e.printStackTrace ();}}
JApplet side exampl
URLConnection con
The above is all the contents of this article entitled "what are the different ways to download JSP files?" Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.