您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 数据库建表,携程网,java开发

  2. public ActionForward perform(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { String action =request.getParameter("action"); System.out.println("\nbook*********************action="+action); if(actio
  3. 所属分类:Java

  1. Java Oracle分页处理

  2. package com.list.struts.util; import java.util.ArrayList; public class Page { //当前跳转的页面情况 private String pagetype; private PaginationBean pagination; private ArrayList result; //构造函数实例化接收一个pagetype和PaginationBean对象 public Page(String pagetype, Pag i
  3. 所属分类:Java

    • 发布日期:2009-07-10
    • 文件大小:1048576
    • 提供者:Fairy_dy
  1. Servelt技术做的E家园

  2. package AiSoft.OwnHome.Servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServlet
  3. 所属分类:Java

    • 发布日期:2009-10-25
    • 文件大小:5120
    • 提供者:czacza
  1. JAVA项目源代码的笔记

  2.  显示变量的值。   
  3. 所属分类:Java

    • 发布日期:2009-10-28
    • 文件大小:35840
    • 提供者:WANGSHOUXIN
  1. java中dispcter和forward的区别

  2. dispcter和forward的区别 RequestDispatcher.forward()方法和HttpServletResponse.sendRedirect()方法的区别是:前者仅是容器中控制权的转向,在客户端浏览器地址栏中不会显示出转向后的地址,他是不会改变Request的值,如果你需要在下一个页面中能从中获取新的信息的话,你可以Request.setAttribute()来放置一些标志,这样从下一个页面中获取;后者则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。这样,
  3. 所属分类:Java

    • 发布日期:2009-12-02
    • 文件大小:47104
    • 提供者:zyfzze
  1. Jquery自动补全

  2. Jquery自动补全1.servlet中 public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String word = request.getParameter("word"); request.setAttribute("word", word); System.out.println("dd"); reques
  3. 所属分类:Java

    • 发布日期:2009-12-14
    • 文件大小:34816
    • 提供者:bane123
  1. JSP100选择题 JSP100选择题 适合考前练习

  2. JSP100选择题 适合考前练习 1 J2EE 中,()类的()方法用于创建对话。(选择一项) a) HttpServletRequest、getSession b) HttpServletResponse、newSession c) HtttpSession、newInstance d) HttpSession、getSession 2 给定一个 Servlet 的doGet方法中的代码片段,如下: request.setAttribute(“name”,”zhang”); response
  3. 所属分类:Java

    • 发布日期:2009-12-31
    • 文件大小:174080
    • 提供者:song0007
  1. Servlet查询数据库案例--Query(java源码)

  2. /* * Copyright (c) 2000 David Flanagan. All rights reserved. * This code is from the book Java Examples in a Nutshell, 2nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied. * You may study, use, and modify it for any
  3. 所属分类:Java

    • 发布日期:2010-01-14
    • 文件大小:2048
    • 提供者:hexiang221
  1. Ajax请求session超时处理流程

  2. Ajax请求session超时处理流程 java服务器端处理: SessionValidateFilter中修改: if (ServerInfo.isAjax(request)) { request.setAttribute("statusCode", 301); request.setAttribute("message", "Session timeout!"); response.sendRedirect(response.encodeRedirectURL("/ajaxDone.jsp
  3. 所属分类:Web开发

    • 发布日期:2010-02-13
    • 文件大小:4096
    • 提供者:zhanghuihua
  1. STRUTS2 标签大全

  2. myList1 = new ArrayList(); myList1.add("1"); myList1.add("2"); myList1.add("3"); myList2 = new ArrayList(); myList2.add("a"); myList2.add("b"); myList2.add("c"); myList3 = new ArrayList(); myList3.add("A"); myList3.add("B"); myList3.add("C"); Map ma
  3. 所属分类:C

    • 发布日期:2010-03-13
    • 文件大小:299008
    • 提供者:xjaixj
  1. request.setAttribute 语句前总显示红色感叹号解决办法 HTTP Status 500 -

  2. HTTP Status 500 - type Exception report message descr iption The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: Servlet execution threw an exception root cause java.l
  3. 所属分类:Java

    • 发布日期:2010-10-08
    • 文件大小:99
    • 提供者:zhp258
  1. SpringMvc初步入门简单的例子

  2. package com.ideawu; import org.springframework.web.servlet.mvc.Controller; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * @author ideawu * */ pu
  3. 所属分类:Web开发

    • 发布日期:2011-04-26
    • 文件大小:390144
    • 提供者:zz894571429
  1. hibernate sprint 封装应用

  2. 自己做的简单的封装程序,很方便。 IService s = this.getService(); String xm = request.getParameter("xm"); String rxsj = request.getParameter("rxsj"); String yx = request.getParameter("yx"); String zy = request.getParameter("zy"); String sf = request.getParameter("sf
  3. 所属分类:Java

    • 发布日期:2011-07-21
    • 文件大小:3072
    • 提供者:xiao_pai_hui
  1. 自己写的生成excel报表的工具类

  2. 使用jxl写的生成excel报表的工具类 List headerList1 = generalHeaderData1(); List headerList2 = generalHeaderData2(); List elementList = generalTBodyData(); List countList= generalHeaderCountData(); countList.remove(countList.size()-1); /**************************
  3. 所属分类:Java

    • 发布日期:2011-10-25
    • 文件大小:5120
    • 提供者:linlin_jiong
  1. Java EE高级编程

  2. 一.实验目的 1.掌握JSTL常见标记 二.实验任务 1.编写一个用户信息浏览页面,用JSTL 实现 三.实验软件 JDK5.0 Tomcat5.0 MyEclipse 四.实验步骤 1. 利用MyEclipse创建Web Application --- MyWebApp ,选择JSTL1.1支持 ( 10分) 2. 创建学生表 tb_user ( 20分) 3. 创建BOJO --- User ( 20分) public class Users implements java.io.Seri
  3. 所属分类:网页制作

    • 发布日期:2011-12-24
    • 文件大小:152576
    • 提供者:zhangchaowo
  1. 简单的servlet增,删,改,查

  2. package com.sshmvc.ljl.web.servlet; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.Ht
  3. 所属分类:Java

    • 发布日期:2012-03-07
    • 文件大小:644096
    • 提供者:l_ji_l
  1. 网上支付源代码

  2. package cn.itcast.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import cn.itcast.utils.
  3. 所属分类:Web开发

    • 发布日期:2012-06-14
    • 文件大小:382976
    • 提供者:xu1164048200
  1. http-request例子

  2. //3.2使用BeanUtils封装 try { BeanUtils.populate(loginUser,map); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); }
  3. 所属分类:Web开发

    • 发布日期:2020-04-09
    • 文件大小:5242880
    • 提供者:qq_41344974
  1. JSP request.setAttribute()详解及实例

  2. 主要介绍了 javascr ipt request.setAttribute()详解及实例的相关资料,需要的朋友可以参考下
  3. 所属分类:其它

    • 发布日期:2020-08-31
    • 文件大小:65536
    • 提供者:weixin_38608873
  1. JSP request.setAttribute()详解及实例

  2. javascr ipt request.setAttribute()详解 request.setAttribute()怎么用的? JSP1代码 String [] test=new String[2]; test[0]=1; test[1]=2; request.setAttribute(test,test) ; response.sendRedirect(jsp2.jsp); JSP2代码 String test[]=(String[])request.getAttribute(te
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:67584
    • 提供者:weixin_38603936
« 12 3 4 5 6 »