<%@page contentType="text/html;charset=utf-8" import="java.sql.*,java.util.*,jerehnet.jsp.database.*,jerehnet.jsp.util.*,java.text.SimpleDateFormat,java.util.regex.Matcher,java.util.regex.Pattern"%> <% PoolManager pool = new PoolManager(); if (pool == null) { pool = new PoolManager(); } Connection conn = null; Pagination pagination = new Pagination(); //设置每页显示条数 int pageCount = 10; //pageCount = Integer.parseInt(Common.getFormatInt(request.getParameter("pageCount"))); if(pageCount==0){ pageCount = 10; } pagination.setCountOfPage(pageCount); DataManager db = new DataManager(); try { conn = pool.getConnection(); String offset = Common.getFormatInt(request.getParameter("offset")); //搜索条件形成 String searchStr = " where website_no='20150619082201914' and channel_node ='2015061909233472' and is_show=1 order by pub_date desc "; String query = "select * from jrcms_jobposition" + searchStr; ResultSet rs = pagination.getQueryResult(query, request, conn); int showPages = 10;//底部页数显示个数 %> 校园招聘_人才_天津奥特泵业

您当前的位置: 首页 > 人才 > 校园招聘

人才
社会招聘
校园招聘
人才政策
联系我们

校园招聘

  • 职位名称
    职位
    人数
    地点
    发布时间
  • <% String jobposition="";String department="";String require_count=""; String work_place="";String pub_date="";String id=""; while(rs!=null&&rs.next()){ id=Common.getFormatStr(rs.getString("id")); jobposition=Common.getFormatStr(rs.getString("jobposition")); department=Common.getFormatStr(rs.getString("department")); require_count=Common.getFormatStr(rs.getString("require_count")); work_place=Common.getFormatStr(rs.getString("work_place")); pub_date=Common.getFormatDate("yyyy-MM-dd",rs.getDate("pub_date")); %>
  • <%=jobposition%>
    <%=department%>
    <%=require_count%>人
    <%=work_place%>
    <%=pub_date%>
  • <% } %>
<%if(pagination.getTotal()>pageCount){%>
上一页 <%String str = "";String pages[] = pagination.getPages();int nowp = pagination.getCurrenPages();nowp = nowp - nowp % (showPages + 1);for (int i = nowp - 1; i < (nowp + showPages) && i < pages.length; i++) {if (i < 0)i = 0;if (pagination.getCurrenPages() == (i + 1)) {str += "" + (i + 1) + " ";} else {str += " " + (i + 1) + " ";}}str=str.substring(0,str.length()-1);out.print(str); %> 下一页 共<%=pagination.getTotalPages()%>页
<%}%>
<% } catch (Exception e) { e.printStackTrace(); } finally { pool.freeConnection(conn); } %>