디시인사이드 갤러리

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

갤러리 본문 영역

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

염불땐쓰갤로그로 이동합니다. 2011.08.25 01:11:37
조회 71 추천 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
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 축의금 적게 내면 눈치 줄 것 같은 스타는? 운영자 24/11/11 - -
282751 네이버 블로그 말야.. 포스팅 자주하는 위주로 띄워주나? [3] blackd갤로그로 이동합니다. 11.10.21 81 0
282750 프갤와서 맨처음 썼던글이 꼬꼬월드갤로그로 이동합니다. 11.10.21 31 0
282749 [끌어올리기] 면도기 같이 쓰지마라 겨드랑이 다림줄갤로그로 이동합니다. 11.10.21 88 0
282748 창문을 열어두면 가끔 옆집 신혼부부 싸우는 소리가 들리는데 [8] 어떡해갤로그로 이동합니다. 11.10.21 128 0
282747 댓글 새로고침 할때마다 느끼는건데.. 디씨 php개발자들은.. 대체... [4] blackd갤로그로 이동합니다. 11.10.21 200 0
282745 csocket관련 질문 jiwons(124.5) 11.10.21 37 0
282744 자바좀하는형들 도움 좀 구해볼게여 [1] linguistics(168.188) 11.10.21 74 0
282743 엑셀 회계장부 비교하는법좀 알려주셈 [3] ㅁㄴㅇ(118.220) 11.10.21 236 0
282740 도서관에서 php 책 빌려왔는데 무슨 1000페이지가 넘음..? [4] 생수생수봉지(218.147) 11.10.21 98 0
282738 저의 꿈은 병신 King이 되는 것입니다 분당살람갤로그로 이동합니다. 11.10.21 41 0
282735 프갤 횽들 엑셀 비교하는것좀 가르쳐줘 [5] 우리동네특공(118.220) 11.10.21 67 0
282733 니들은 30 찍엇을때 연봉 얼마나 받을 수 있을것같냐 ?? [7] 개쉛기갤로그로 이동합니다. 11.10.21 199 0
282732 면접보라고 문자왔는데 [1] 얼룩돼지갤로그로 이동합니다. 11.10.21 87 0
282730 니들 로또는 사고 프갤질하냐? [9] 다림줄갤로그로 이동합니다. 11.10.21 105 0
282728 형들 띄어쓰기 누가만든지 암? [2] ,.,(183.100) 11.10.21 73 0
282727 내가 그랬지? 우리나라 부동산 위험 하다고.. 곳 폭락 할꺼라고!! [20] rntjr(121.190) 11.10.21 214 0
282726 횽 스도쿠로 프로그래밍 적성 판단하는게 옳아? 다림줄갤로그로 이동합니다. 11.10.21 78 0
282725 생산의 신(god)이 되어보자! 다림줄갤로그로 이동합니다. 11.10.21 44 0
282723 요즘 php 개발자 구하기 힘든가보다 [5] monoless갤로그로 이동합니다. 11.10.21 148 0
282722 입개르르르르~ [2] 다림줄갤로그로 이동합니다. 11.10.21 31 0
282721 객체지향으로 간단한 갤러그 슈팅게임을 만드려면 어떻게해야하지? [3] 갤러그(119.70) 11.10.21 83 0
282720 시각차이 [1] MUFF갤로그로 이동합니다. 11.10.21 52 0
282719 횽들 메모리 참조 명령어 같은거 암? [1] 금고래갤로그로 이동합니다. 11.10.21 47 0
282718 오늘의 희망 퇴근시간을 적어봅니다 [7] 전간디갤로그로 이동합니다. 11.10.21 112 0
282717 고등학교 때 휴학하면 [1] 멀티.갤로그로 이동합니다. 11.10.21 83 0
282716 우왕.. 퍼즐 하나 다 맞춤... [1] iljeomobolt갤로그로 이동합니다. 11.10.21 43 0
282714 8시간만 버티면 됩니다 [1] 전간디갤로그로 이동합니다. 11.10.21 52 0
282713 야 솔데스크 학원어떠냐 [4] 간첩선갤로그로 이동합니다. 11.10.21 283 0
282712 정보올림피아드 [1] 이건산전갤로그로 이동합니다. 11.10.21 53 0
282710 프로그래밍 적성 테스트 [3] 바보플머(183.101) 11.10.21 695 0
282708 학점관리는 그다지 안해도 되는거같애 [1] elwlwlwk갤로그로 이동합니다. 11.10.21 89 0
282706 ㅋ 프갤은 역시 가끔 들러줘야 해 y녀6디리(220.118) 11.10.21 42 0
282705 죠스바 삼행시 [4] elwlwlwk갤로그로 이동합니다. 11.10.21 37 0
282704 쭈쭈바 삼행시 elwlwlwk갤로그로 이동합니다. 11.10.21 53 0
282703 바밤바 삼행시 elwlwlwk갤로그로 이동합니다. 11.10.21 34 0
282701 마약먹은 이문동 쮸쮸바 입니당^^ [1] 이문동쮸쮸바갤로그로 이동합니다. 11.10.21 65 0
282699 내가 ㅅㅂ 갤질 하면서 이렇게 황당하긴 첨이네 [4] w(219.255) 11.10.21 93 0
282698 근데 진짜 곽팀장 직업이 뭐야? 534F444D61737465갤로그로 이동합니다. 11.10.21 37 0
282695 이문동 진짜 돌았음/? [21] w(219.255) 11.10.21 160 0
282694 곽팀장 보거라 [1] 534F444D61737465갤로그로 이동합니다. 11.10.21 38 0
282693 쮸쮸바하니까 534F444D61737465갤로그로 이동합니다. 11.10.21 33 0
282691 사람 열받게 하는데는 뭐 있네 개색ㄱ기 [6] w(219.255) 11.10.21 85 0
282690 자살춤 병시나 [1] 534F444D61737465갤로그로 이동합니다. 11.10.21 47 0
282689 이문동 아저씨임 [5] 534F444D61737465갤로그로 이동합니다. 11.10.21 64 0
282688 야이 개새야 너 뭐야 대체 이문동... [7] w(219.255) 11.10.21 97 0
282686 c++ 간단한 질문 [3] 나래(116.36) 11.10.21 64 0
282685 야.... 경제가 어려워도... [5] w(219.255) 11.10.21 76 0
282684 아.. 내일 시험인데 공모전 제출덕에 공부는 물건너감 이히힣 Aven갤로그로 이동합니다. 11.10.21 34 0
282682 근데 현실적으로 현재 상황을 보면 앞으로 지금보다 더 인정 받을수 잇을꺼 [5] w(219.255) 11.10.21 92 0
282681 근데 이문동은 뭐해? 취직했어? [2] w(219.255) 11.10.21 60 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2