`
bryan.liu
  • 浏览: 19365 次
  • 性别: Icon_minigender_1
  • 来自: suzhou
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Force "Save file" dialog on the JSP page

阅读更多

If you want to force pop up "Save File" dialog to ask user save file from server.

We need to set the several parameter toresponse.

the first is content type.

response.setContentType("application/pdf"); // the type is the file type you want to user to save.

Another is content disposition.

This is very important when you want to force the save dialog. not matter if the browser has assicate some file type to open in the browser.

response.setHeader("Content-Disposition", "attachment;filename=\"somename\"");

Notice: attachment is very important here since it's force prompt the save file dialog.

分享到:
评论

相关推荐

    MFC-Open-the-save-file-dialog-box.zip_mfc open save_open

    CSaveFileDialog saveFile(TRUE, _T("txt"), _T(""), OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY, _T("Text Files (*.txt)|*.txt|All Files (*.*)|*.*")); ``` 这里,TRUE表示默认创建的是保存对话框,_T("txt")是...

    file dialog

    - **保存文件对话框(Save File Dialog)**:用户可以指定新文件的位置、名称和格式,将数据保存到磁盘上。 - **另存为对话框(Save As Dialog)**:类似于保存文件对话框,但主要用于复制现有文件或以不同名称或...

    Adding filters to the Open File dialog(24KB)

    在IT领域,尤其是在软件开发中,"Adding filters to the Open File dialog"是一个常见的需求,它涉及到用户界面(UI)的设计和用户体验(UX)优化。Open File dialog是大多数应用程序中的一个基本组件,允许用户选择...

    Save a File Using a File Save Dialog Box

    Demonstration script that allows you to enter a file name in a File Save dialog box, and then saves a sample text file (consisting entirely of the current date) under ...

    File Dialog

    **文件对话框(File Dialog)** 在计算机编程和用户界面设计中,文件对话框是操作系统提供的一种标准组件,用于帮助用户在本地文件系统中选择、打开、保存或浏览文件。在Windows、macOS和Linux等操作系统中,都有...

    jquery popupDialog 使用 加载jsp页面的方法

    综合以上知识点,我们可以总结出使用popupDialog插件结合JSP页面的流程:首先需要引入jQuery和popupDialog插件,然后在适当的时候通过JavaScript触发popupDialog()函数来加载指定的JSP页面,同时确保页面不被浏览器...

    jQuery Dialog 弹出层对话框插件(可加载url地址)

    **jQuery Dialog弹出层对话框插件:深入解析与应用** jQuery Dialog是jQuery UI库中的一个组件,它提供了一种优雅的方式在网页上创建交互式的弹出层对话框。这个插件不仅允许用户展示信息,还可以加载外部URL内容,...

    各种自定义Dialog 以及Dialog加载动画

    在Android开发中,自定义Dialog和Dialog加载动画是提升应用用户体验的重要手段。默认的Dialog样式虽然功能齐全,但在追求个性化和美观的今天,往往显得过于简单甚至有些过时。因此,开发者常常需要根据应用的设计...

    各种android弹出dialog效果以及各种dialog样式

    各种android弹出dialog效果以及各种dialog样式各种android弹出dialog效果以及各种dialog样式各种android弹出dialog效果以及各种dialog样式各种android弹出dialog效果以及各种dialog样式各种android弹出dialog效果...

    Ext.ux.UploadDialog

    Configuration. Most configuration options are ...The files in the queue are posted one at a time, the file field name is 'file'. The handler should return json encoded object with following properties:

    一个Jsp弹出窗口

    在这个特定的案例中,我们讨论的是一个基于JSP实现的弹出窗口,其目标是提供一种在页面上显示提示信息的方式,既简洁又具有良好的用户体验。 在网页设计中,弹出窗口通常用于通知用户、请求确认或者显示附加信息。...

    YUI3 dialog组件

    <p>This is the dialog content. <button id="closeBtn">Close <!-- JavaScript --> YUI().use('dialog', function(Y) { var dialog = new Y.Dialog({ srcNode: '#dialog', modal: true }).render(); ...

    jquery_dialog jquery_dialog jquery_dialog

    《jQuery Dialog 深度解析与实践应用》 在Web开发领域,jQuery Dialog是一款非常流行的JavaScript库,用于创建可交互的对话框。它基于jQuery框架,提供了丰富的功能和灵活的定制选项,使得开发者能够轻松地在网页上...

    Advancing the State of the Art in Open Domain Dialog Systems the Alexa Prize.pdf

    In the second iteration of the competition in 2018, university teams advanced the state of the art by using context in dialog models, leveraging knowledge graphs for language understanding, handling ...

    android--Dialog

    在Android开发中,`Dialog`是一种非常常见的组件,它用于在主界面之上显示临时的、半透明的窗口,用于向用户展示信息或者进行简单的交互。本篇将详细讲解三种类型的`Dialog`:普通对话框、日期选择对话框、时间选择...

    CuteWriter

    Using CutePDF Writer to create PDF document: DO NOT look for any application to run....Select a folder to Save in and enter a File name, then click on Save. Go to that folder to find your PDF file.

    安卓Service中弹Dialog

    然而,有时我们需要在Service中显示一个`Dialog`来与用户进行交互,例如提示信息或获取用户确认。这涉及到Android系统服务的生命周期管理以及如何在非UI线程中正确地操作UI元素。 首先,理解`Service`的生命周期是...

    自定义圆角的dialog

    在Android应用开发中,Dialog是一种重要的用户交互组件,它用于显示临时信息或提示用户进行选择。系统提供的默认Dialog样式虽然实用,但往往无法满足开发者对于界面个性化和用户体验优化的需求。因此,自定义Dialog...

    MuRoS – Multi-Robot Simulator

    You can also select Save as from the File menu. • To change constants / parameters: there is a dialog box to change dynamically the constants of the potential controllers, collisions and other ...

Global site tag (gtag.js) - Google Analytics