- 浏览: 108816 次
- 性别:
- 来自: 青岛
最新评论
-
everlxq:
...
window 、dom
文章列表
public void downloadFj() {
String id = request.getParameter("id");
if (StringUtils.isNotEmpty(id)) {
Sjfjb sjfjb = sjfjbService.get(Long.valueOf(id));
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType(sjfjb.getContenttype());
...
冒号后紧跟变量 :hdsj1
字段 匹配很多,放在集合中,in (:searchId)
List searchIds=new ArrayList();
searchIds.add("0");
String bmbh=getLoginuser().getSysUsers().getJgid();
Map map = new HashMap();
String hql="";
String hql_count="";
List<Department> ...
window.location='<c:url value="/redirect.jsp?url=/bd/qwzygxPtAction_search.action"/>';
redirect.jsp表示页面跳转
http://demo.swfupload.org/Documentation/官网文档
https://code.google.com/p/swfupload/
http://www.cnblogs.com/2050/archive/2012/08/29/2662932.html 详细
upload.setFileSizeMax 不能用 以及upload.setProgressListener不能用的解决办法
jar
// 设置单个文件的最大上传值
upload.setFileSizeMax(MAX_LENGTH);
// 设置整个request的最大值
upload.setSizeMax(MAX_LENGTH);
upload.setProgressListener(new UploadListener(pi));
提示没有这个方法,肯定是jar包错了 下载commons-fileupload-1.2.1.jar w ...
java代码
package test;
import java.io.File;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.jspsmart.upload.Files;
import com.jsp ...
window.opener 返回的是创建当前窗口的那个窗口的引用,也就是得到父级窗口的引用~
比如点击了index.htm上的一个链接而打开了helloWorld.htm,然后我们打算在helloworld.htm上输入一个值然后赋予index.htm上的一个id为“Name”的textbox中,就可以写为:
window.opener.document.getElementById("name").value = "helloWorld中输入的值";
假定你的web application 名称为news,你在浏览器中输入请求路径:
http://localhost:8080/news/main/list.jsp
则执行下面向行代码后打印出如下结果:
1、 System.out.println(request.getContextPath());
打印结果:/news
2、System.out.println(request.getServletPath());
打印结果:/main/l ...
<jsp:include page="/JdjSourceEditServlet?action=findAll"></jsp:include>
<jsp:include page="/JdjSourceEditServlet?action=xianshiJilu"></jsp:include>
页面发送请求
jquery-1.4.3.js 功能未实现,检查jquery版本是否支持
$(function(){
alert("function");
$.post("/test/testJsonConfig",{"name":"zhangsan"},function(data){
alert(data);
});
});
1.导入servlet-api.jar包
2.web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://java.sun.com/xml/ns/j2ee http://java.sun ...
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String name=req.getParameter("name");
Person person = new Person(name,23);
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setJsonPropertyFi ...
struts2中常用Result类型的用法
一、dispatcher
(1)为缺省的result类型,一般情况下我们在struts.xml会这么写:
<result name="success">/main.jsp</result>
以上写法使用了两个默认,其完整的写法为:
# <result name=&q ...
<script language="JavaScript" src="js/jquery-1.2.5.min.js"></script>
<script type="text/javascript">
function view(){
var arr=$("input");
alert(arr); // object :可以有也可以没有
var arr1=$(":input:checked" ...