`
文章列表

导出Excel

    博客分类:
  • java
this.getRequest().getRealPath(Constant.UPLOAD_FILE)+"/" public void ExportExcel(String path) { System.out.println("EXCEL路径="+path); int i = 0; int count = 2; // 遍历结果集,将输入写到输出流 try { // 新建一个文件 FileOutputStream out = new FileOutputStream(path + "shiyanpaike.xls& ...
ArrayList list = new ArrayList();   int Counts  =(int) list.get(0);
把这个SELECT MIN(CONCAT(espYear, espMonth)) as yearmonth FROM Empsalarypay  改成SELECT MIN(CONCAT(espYear, espMonth)) FROM Empsalarypay 试下 hibernate并不支持在hql语句中使用别名
long score = rst.getTotalScore(); int totascore = (int)score;
List<CouCourseapply> list = (List) pc.getResult(); for(int i=0;i<list.size();i++){   CouCourseapply  c = list.get(i); } for(CouCourseapply ccou : list){ out.write(ccou.getBaseCourse().getCourseName().getBytes()); } Method[] methods = theClass.getDeclaredMethods(); Method potentialSe ...
这个错误是 路径错误了   url:'stu.do?method=jqueryajax', 改成   url:'<%=request.getContextPath() %>/stu.do?method=jqueryajax', 正确了
No result defined for action com.itsoft.rst.web.action.RstStuResultReportAction and result toRstRecordRepotList - action - file:/D:/ProgramFiles/apache-tomcat-6.0.30/webapps/KOLMS/WEB-INF/classes/resources/struts/rst-action.xml:53:37 这个错误是 在struts配置文件里没有这个返回路径的名字,在配置文件里没有这个页面

jQuery ajax例子

    博客分类:
  • js
function submitForm() { var r = $("#element").form('validate'); if (!r) { return false; } var formData = $('#element').serialize(); $.ajax({ type : 'POST', url : 'dataelement.do?type=add', processData : true, data : formData, success : function(data) ...

原始ajax例子

    博客分类:
  • js
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <html>   <head>     <title>原始ajax例子</title>   </head>   <body>   <button id="btnajax">ajax调用</button>   <br/>   <div id=" ...
Action 类: • Struts1要求Action类继承一个抽象基类。Struts1的一个普遍问题是使用抽象类编程而不是接口。 • Struts 2 Action类可以实现一个Action接口,也可实现其他接口,使可选和定制的服务成为可能。Struts2提供一个ActionSupport基类 ...

jstl 下拉列表

edit <select name="roleid" > <c:forEach items="${list}" var="t"> <option value='<c:out value="${t.roleid}"/>' <c:if test="${user.roleid == t.roleid}">selected</c:if>> <c:out value="${t.rolename}"/ ...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource [META-INF/cxf/cxf.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate ...
1. 处理对话框的WM_SIZE,然后用MoveWindow或者SetWindowPos来把对话框上面的控件重新调整新位置和大小。 2. 基本的做法就是响应WM_SIZE消息,并按照窗口大小比例来调整控件的位置和大小,控件的大小最好设置成窗口的百分之几,这样的话,就可以根据窗口的大小随时调整了。 3. 每次OnSize 即可获得一个CRect,然后根据这个CRect来确定这些控件的位置和大小,使用函数MoveWindow 或SetWindowpos实现。 4. 1)通过下面两个函数获取的是显示屏幕的大小【屏幕的分辨率】(不包括任务栏等区域):   int   nFullWidth=GetSyst ...
Cookie的工作原理: Cookie是最常用的客户会话跟踪技术。Cookie是将会话数据保存在客户端来维护会话状态的一种方式。它是服务器发送给浏览器的体积很小的纯文本信息,用户以后在访问同一个Web服务器时,浏览器会把Cookie原样发送给服务器。通过这种方式,保存了用户的会话状态。 Cookie分为两类:持久的和暂时的。持久的Cookie会被存储在客户端文件中;暂时的Cookie存储在内存中,一旦浏览器关闭Cookie就消失了。一般来说,客户端浏览器一般只允许存放300个Cookie,每个站点最多存放20个Cookie,每个Cookie的大小限制为4kb,因此Cookie不会占用太大的硬 ...
Global site tag (gtag.js) - Google Analytics