디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

좆뉴비.ㅜㅜ 형들한테 질문좀 할게요.

염불땐쓰갤로그로 이동합니다. 2011.08.25 01:11:37
조회 68 추천 0 댓글 3

java 소스

==================================================================================================================
import java.util.ArrayList;
import java.util.HashMap;


import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;


import common.Constants;
import common.component.IComponent;
import common.util.HttpUtil;


import db.Dao;


public class CompanyInfoSearch implements IComponent{


 private String forward유알엘 = null;
 
 public CompanyInfoSearch(){}
 
 public CompanyInfoSearch(String forwar유알엘l){
  this.forward유알엘 = forward유알엘;
 }
 
 public String doComponent(HttpServletRequest req, HttpServletResponse res)throws Exception {
  
  HttpSession session = null;
  String cpId   = null;


  
  try{
            System.out.println("");
   session = req.getSession();
   cpId = (String)session.getAttribute(Constants.LOGIN_ID);
   
   if(cpId == null || cpId.length() == 0){
    
    req.setAttribute("url", this.forward유알엘);
    return Constants.HOMEPAGE_LOGIN_PAGE;
   
   }
   
   long rownum     = 0;
   int rowCount    = 10;
   int navigatorCount   = 10;
   int currentPage    = 1;
   
    HashMap<String, Object> parameter = new HashMap<String, Object>();
    
    parameter.put("cpId",   cpId);
    parameter.put("searchItem",  HttpUtil.getParameter(req, "companyInfoSearchItem"));
    parameter.put("searchKeyword",  HttpUtil.getParameter(req, "companyInfoSearchKeyword"));
    parameter.put("typeOfBusiness", req.getParameterValues("typeOfBusiness"));
    parameter.put("companyType",  req.getParameterValues("companyType"));
    parameter.put("establishDate",  req.getParameterValues("establishDate"));
    parameter.put("employeeCnt",  req.getParameterValues("employeeCnt"));
    parameter.put("rowCount",    rowCount);
    parameter.put("currentPage",  HttpUtil.getParameter(req, "companyInfoCurrentPage"));
  
    Integer maxNoInteger = (Integer)Dao.selectForObject("cp.companyInfoTableSelectForMaxNo", parameter);
    int maxNo = maxNoInteger.intValue();
    
    if(HttpUtil.getParameterIntValue(req, "companyInfoRownum") == 0)
     
     parameter.put("rownum", maxNo);
    else
     parameter.put("rownum", HttpUtil.getParameterIntValue(req, "companyInfoRownum"));
    
    ArrayList<HashMap<String, Object>> companyInfoList = (ArrayList<HashMap<String, Object>>)Dao.selectForList("cp.companyInfoTableSelectForBoard", parameter);   
    
    req.setAttribute("companyInfoList",       companyInfoList);
    req.setAttribute("companyInfoMaxNo",      maxNo);
    req.setAttribute("companyInfoCurrentPage",  HttpUtil.getParameterIntValue(req, "companyInfoCurrentPage"));
    req.setAttribute("companyInfoSearchItem",  parameter.get("searchItem"));
    req.setAttribute("companyInfoSearchKeyword", parameter.get("searchKeyword"));
    req.setAttribute("typeOfBusiness",     req.getParameterValues("typeOfBusiness"));
    req.setAttribute("companyType",     req.getParameterValues("companyType"));
    req.setAttribute("establishDate",     req.getParameterValues("establishDate"));
    req.setAttribute("employeeCnt",     req.getParameterValues("employeeCnt"));
   
  } catch(Exception ex){
   throw ex;
  }
  
  return this.forward유알엘l;
 }
 
}
==================================================================================================================

jsp 소스
==================================================================================================================




<table width="100%" class="" cellpadding="0" cellspacing="0">
 <tr>
  <td colspan="2" height="1" style="padding:0;" bgcolor="#E9E9E9">
   <table width="770px" border="0" cellspacing="0" cellpadding="0">
   <tr>
    <th >업      종 :</th>
    <td><input type="checkbox" name="typeOfBusiness" value="1" >서비스·교육·금융·유통 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="2" />미디어·광고·문화·예술 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="3" />IT·정보통신 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="4" />제조·통신·화학·건설 </td>
    <td colspan="2"> </td>
   <tr>
   <tr>
    <th >기업유형 :</th>
    <td><input type="checkbox" name="companyType" value="대기업" />대기업</td>
    <td><input type="checkbox" name="companyType" value="공기업" />공기업</td>
    <td><input type="checkbox" name="companyType" value="코스닥등록" />코스닥등록</td>
    <td><input type="checkbox" name="companyType" value="외국계" />외국계</td>
    <td><input type="checkbox" name="companyType" value="일반기업" />일반기업</td>
    <td> </td>
   </tr>
   <tr>
    <th >설립년수 : </th>
    <td><input type="checkbox" name="establishDate" value="1" />5년 미만</td>
    <td><input type="checkbox" name="establishDate" value="2" />5~9년</td>
    <td><input type="checkbox" name="establishDate" value="3" />10~19년</td>
    <td><input type="checkbox" name="establishDate" value="4" />20~29년</td>
    <td><input type="checkbox" name="establishDate" value="5" />30년 이상</td>
    <td> </td>
   </tr>
   <tr>
    <th >임직원수 : </th>
    <td><input type="checkbox" name="employeeCnt" value="1" />10명 미만 </td>
    <td><input type="checkbox" name="employeeCnt" value="2" />11~19명</td>
    <td><input type="checkbox" name="employeeCnt" value="3" />20~49명</td>
    <td><input type="checkbox" name="employeeCnt" value="4" />50~99명</td>
    <td><input type="checkbox" name="employeeCnt" value="5" />100명 이상</td>
    <td>
     <a href=":search()">
      <img src="" alt="검색">
     </a>
    </td>
   </tr>
   </table>
  </td>
  </tr>
</table>

==================================================================================================================


<td><input type="checkbox" name="typeOfBusiness" value="1" >서비스·교육·금융·유통 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="2" />미디어·광고·문화·예술 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="3" />IT·정보통신 </td>
    <td><input type="checkbox" name="typeOfBusiness" value="4" />제조·통신·화학·건설 </td>

같은 name의 체크박스 체크한 것들을 getParameterValues로 받아와서 처리하고
다시 jsp로 체크했던 체크박스를 자동으로 체크해줘야하는데( 체크박스 체크상태 유지) jsp 에서 어떻게 받아서 처리해할지 모르겠어요.ㅜㅜ
도움좀 부탁드릴게요. ㅜㅜ



추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
이슈 [디시人터뷰] 라이징 스타로 인정받은 걸그룹, ‘리센느(RESCENE)’ 운영자 24/11/08 - -
설문 축의금 적게 내면 눈치 줄 것 같은 스타는? 운영자 24/11/11 - -
283545 편의점서 파는 죽있자나--; [2] !@#ㅇㅇ갤로그로 이동합니다. 11.10.25 59 0
283544 음.. 애들립 카드/음원를 기억하시나요? [4] 애들립(143.248) 11.10.25 50 0
283543 ▶◀ 존 매커시 [2] 1(121.182) 11.10.25 68 0
283541 형들 저좀 도와주세요 [9] 빅바!갤로그로 이동합니다. 11.10.25 81 0
283540 나는 아직 젊은가봐.. [3] 쿄스케갤로그로 이동합니다. 11.10.25 75 0
283538 오실로스코프 마련했어 이모군(175.114) 11.10.25 51 0
283531 근데 학원 누나들 보면 [3] 로하로하알로하갤로그로 이동합니다. 11.10.25 137 0
283530 내용필독!흉들이라면 가능하겟지?도와줘~ [3] 개매너갤로그로 이동합니다. 11.10.25 115 0
283527 형들.. 금감원 들어가서 일하려면 많이 힘들까? ㅠㅠ [2] 수상한김토끼갤로그로 이동합니다. 11.10.25 83 0
283524 아스 횽의 증상을 치료할 수 있는 방법을 생각해보자 [4] McHello갤로그로 이동합니다. 11.10.25 63 0
283523 내가 원치 않게 허세부리게 된 적 [7] 쿄스케갤로그로 이동합니다. 11.10.25 85 0
283521 포트란 행렬곱 이제 진짜 하나다.. 하나만..(121.55) 11.10.25 341 0
283518 근데 상대방이 거짓말이던 허세던 그냥 넘아가는게 좋을때가 많다. [1] 쿄스케갤로그로 이동합니다. 11.10.25 58 0
283514 항상 느끼는거지만 잉여력이 최고인거 같아 벌레는 ㅋㅋ blackd갤로그로 이동합니다. 11.10.25 47 0
283507 아이폰에는 로하로하알로하갤로그로 이동합니다. 11.10.25 39 0
283506 플래시는 이제 찌그러짐? 썬즈갤로그로 이동합니다. 11.10.25 43 0
283505 웹 쪽 잘아는사람... 질문이 있어 [2] 썬즈갤로그로 이동합니다. 11.10.25 66 0
283504 오늘 패딩 입고 출근한 횽들 많나? [3] blackd갤로그로 이동합니다. 11.10.25 81 0
283503 횽들 도대체 [2] 로하로하알로하갤로그로 이동합니다. 11.10.25 40 0
283502 미안 나 급해서.. 세번째 글쓰는건데.. 행렬곱에 관한거야 나 수정좀..(121.55) 11.10.25 33 0
283501 c 공부 방법좀 알렬ㅈ뤄 [1] 1(118.220) 11.10.25 54 0
283500 파판은 시간이 지날 수록 초코보의 귀여움이 사라지는 것 같다 [2] 얼빠진호랑이갤로그로 이동합니다. 11.10.25 84 0
283498 10진수 2진수 이외 16진수 8진수 이런거 쓰는 경우는 어떤경우임 [1] 1(118.220) 11.10.25 102 0
283497 죤나 드러워서 못하겠네.. [6] !@#ㅇㅇ갤로그로 이동합니다. 11.10.25 83 0
283496 행렬곱 포트란 딱 하나만 알려줘 나 수정좀..(121.55) 11.10.25 491 1
283494 횽들 2차원 3차원 배열 쓰는 이유가 뭐야? [7] 1(118.220) 11.10.25 61 0
283493 내가 은꼴을 모으는 이유는 [2] 얼빠진호랑이갤로그로 이동합니다. 11.10.25 138 0
283492 글을 싸자 글을 싸자 [3] 땡칠도사갤로그로 이동합니다. 11.10.25 50 0
283489 은꼬르~ [5] 얼빠진호랑이갤로그로 이동합니다. 11.10.25 110 0
283488 아.. 포트란 행렬곱 대충 다 만들었는데 몇개만손좀봐줘 [3] 나 수정좀..(121.55) 11.10.25 59 0
283487 참고로 삼성도 국내에선 존나 갑기업임 [2] 사과갤로그로 이동합니다. 11.10.25 154 0
283485 파일 첨부가 왜 안되냐;; [5] 얼빠진호랑이갤로그로 이동합니다. 11.10.25 84 0
283484 아욱.. 요센 과장보단 부장이 더 짜증.... [3] blackd갤로그로 이동합니다. 11.10.25 88 0
283482 주황색 드레스의 그 분... [1] 분당살람갤로그로 이동합니다. 11.10.25 48 0
283479 근데 애플이 대단하긴함 니네 그거 아냐? [2] 사과갤로그로 이동합니다. 11.10.25 103 0
283477 간단 ddd(220.66) 11.10.25 29 0
283471 형들 시간복잡도 질문좀 히바우두갤로그로 이동합니다. 11.10.25 42 0
283470 그런 의미에서 영향력 하나만큼은 데니스 리치가 최고인듯 꼬꼬월드갤로그로 이동합니다. 11.10.25 77 0
283468 잡스가 대단하긴 해도 게이츠 발끝에는 못미칠듯... [7] 꼬꼬월드갤로그로 이동합니다. 11.10.25 235 0
283466 오렌지 카라멜과 발로텔리의 공통점 [2] 쿄스케갤로그로 이동합니다. 11.10.25 72 0
283464 감기 조심해라 니들아.. [1] !@#ㅇㅇ갤로그로 이동합니다. 11.10.25 36 0
283463 횽들 간단한 C 언어 함수 에러 해결좀!! [2] 눈팅2.6갤로그로 이동합니다. 11.10.25 52 0
283461 클레이모어 요즘 보고 있는데 재밌더라.. [1] 쿄스케갤로그로 이동합니다. 11.10.25 46 0
283456 안철수연구소 하한가 [성대아싸]갤로그로 이동합니다. 11.10.25 44 0
283455 빌게이츠 vs 스티브잡스 [5] 쿄스케갤로그로 이동합니다. 11.10.25 131 0
283450 온라인 서버 같은건 없나 로하로하알로하갤로그로 이동합니다. 11.10.25 29 0
283448 누드갤 사진들 iljeomobolt갤로그로 이동합니다. 11.10.25 97 0
283447 프갤이 요세 조용한거 같다 [4] 로하로하알로하갤로그로 이동합니다. 11.10.25 51 0
283446 프로그래밍 갤러리 분들중 [7] 알려주세요(112.186) 11.10.25 69 0
283444 지금 내수준에 중요한건 만드는거일까 설계일까 [12] +어게인갤로그로 이동합니다. 11.10.25 143 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2