`
wyz191
  • 浏览: 97559 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

showDialog的JSP应用

阅读更多

用于解决在一个页面上传多个文件的问题.

<script type="text/javascript">
function showDialog(url){
 //弹出一个showModalDialog,并以returnValue来获取返回值
 var returnValue = window.showModalDialog(url);
 //alert(returnValue);
 if(returnValue!=null){
  //for(var i=0;i<returnValue.length;i++){
   //document.all.info.innerHTML = returnValue[i]+"<br>";
  //}
  //输出返回值
  document.getElementById("IMAGENAME").value = document.getElementById("IMAGENAME").value + returnValue + "|";
  //document.all.imgname.innerHTML=returnValue;
 }
}
</script>

上传示例






在示例图中的"上传图片"是一个button按钮,给它一个onclick事件,当点击时触发:
<td height="25">
         <input name="IMAGENAME" type="text" id="IMAGENAME" />
         <input type="button" name="Submit3" value="上传图片" onclick="showDialog('automobile/up.jsp')" />
</td>
弹出图片上传页:


图片上传页:
<base target="_self"/>
<body>
<form action="/qcbst/v_uploadautomobileimage" name="myform" method="post" enctype="multipart/form-data" >
<table width="100%"  border="0" align="center">
  <tr>
    <td colspan="2">图片上传</td>
  </tr>
  <tr>
    <td width="30%"><div align="right">汽车图片:</div></td>
    <td width="70%"><input type="file" name="imgname" size="20"><input type="submit" value="上传"></td>
  </tr>
  <tr>
    <td><div align="right">上传信息:</div></td>
    <td>&nbsp;</td>
  </tr>
</table>
</form>
</body>

当点击上传后.图片上传到服务器,然后,关闭当前页,返回图片的名称给调用页:

上传servlet:
public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {

  response.setCharacterEncoding("GBK");
  response.setContentType("text/html");
  UploadBean up = new UploadBean();//--------文件上传类
  String path = request.getRealPath(request.getContextPath()).substring(0,request.getRealPath(request.getContextPath()).lastIndexOf("\\"));
    
     try{
         File file = new File(path+"/img/automobile");//
         if(!file.exists()){
           file.mkdir();
         }
     }catch(Exception e){      
     }
     up.setObjectPath(path+"/img/automobile/");//
     //设置上传文件大小
     up.setSize(10000*1024);
     //可上传文件后缀名
     up.setSuffix(".JPG.JPGE.jpg.jpge.gif.GIF");
     try{
      up.setSourceFile(request);
     }catch(Exception e){
      response.getWriter().write("图片上传失败!!!");
     }
     String [] saSourceFile = up.getSourceFile();
     String [] saObjectFile = up.getObjectFileName();
     String [] saDescription = up.getDescription();
    
     int iCount = up.getCount();
     String sObjectPath = up.getObjectPath();
    
     if(saDescription != null && saDescription[0].indexOf("ERR") == -1){
      response.getWriter().write("<script language='javascript'>window.returnValue = '");
      response.getWriter().write(saObjectFile[0]);
      response.getWriter().write("';window.close();</script>");
     }else{
      
      response.getWriter().write("图片上传失败!!!");
     }
 }
 上传完成后:
OK,完成了!!!

分享到:
评论

相关推荐

    Window.showDialog详解合集

    在JSP开发中,`window.showDialog`是一个经常被用于创建模态对话框的方法,它可以帮助我们实现页面间的交互和数据传递。模态对话框是一种阻止用户与页面其他部分交互,直到用户处理完对话框中的内容才能继续操作的...

    showdialog010220

    showdialog010220 一个新的Flutter应用程序。 入门 该项目是Flutter应用程序的起点。 如果这是您的第一个Flutter项目,那么有一些资源可以帮助您入门: 要获得Flutter入门方面的帮助,请查看我们的,其中提供了...

    图片列表显示

    在C#中,我们可以创建一个`OpenFileDialog`实例,设置其属性(如默认文件类型过滤),然后调用`ShowDialog()`方法来显示对话框。用户选择文件后,`FileName`属性将返回选定的文件路径。 接着,图片的加载与显示涉及...

    javascript弹出窗口问题总结

    例如,`ShowDialog`函数展示了如何打开一个居中显示的窗口。 - `window.showModalDialog()`方式:与`window.open()`类似,但会创建一个模态对话框,用户必须关闭对话框才能继续与父窗口交互。同样,`ShowDialog`...

    海辉面试题

    - `&lt;jsp:forward&gt;`:用于将请求转发到另一个JSP页面或Servlet。 #### 2. 如何解析一个XML文件,使用jdk自带的w3c库如何进行解析,分为哪些步骤? 解析XML文件通常有三种方式:DOM、SAX 和 StAX。这里以DOM为例,...

Global site tag (gtag.js) - Google Analytics