일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- mysql
- 한국소프트웨어산업협회
- ant path pattern
- 접속ip
- map api v3
- String[]
- 주소 좌표변환
- http https
- checkbox 값처리
- eclipse hotdeploy
- 첫주 및 마지막주 날짜 전체 포함
- 아이폰키보드
- String 배열
- ajax 동기방식처리
- remote ip
- Oracle
- mysql trigger
- jquery selectbox change
- partition by
- KOSA
- TM128
- 폐업자에 대한 업종등의 정보내역
- ajax async
- update
- 서브쿼리
- group by max
- 2개 테이블
- 컴퓨터 드라이버
- extundelete
- multipart
- Today
- Total
하은양 믿음군 효실맘 호홍홍집s
Multipart 업로드시 String[] 배열(checkbox 값같은것) 처리하기 예제 본문
폼전송시 enctype="multipart/form-data" 방식으로 처리할 때 checkbox 같은 String[] 배열을 사용하기가 잘 생각나지 않아서
매번 고생하는데... 기억해 두자!!
String[] career0 = null;
int icareer0 = 0;
Hashtable<Integer,String> career0Arr = new Hashtable<Integer, String>();
// MultiPart ...
try{
List items = null;
Hashtable<String,Object> ht = new Hashtable<String,Object>();
Iterator iter = items.iterator();
String sItmName="";
String sItmValue="";
while(iter.hasNext()){
FileItem item = (FileItem)iter.next();
if(item.isFormField()){
sItmName = item.getFieldName();
sItmValue = Util.InjectionDefender(item.getString("utf-8"));
if(sItmName.trim().equals("career0")) {
career0Arr.put(icareer0, sItmValue);
icareer0++;
}else{
ht.put(sItmName.trim(),sItmValue.trim());
}
}else{
sItmName = item.getFieldName();
sItmValue = item.getName(); if(sItmValue == null) sItmValue = "";
if(sItmValue.length() > 1){
if(sItmName.trim().equals("humanimage")){
humanimage = util.getFileName(sItmValue).trim();
String fileExt = humanimage.substring(humanimage.lastIndexOf(".")).replace(".","");
if(!sIMG_UPLOADABLE.contains(fileExt.toLowerCase())){
out.println("<script type='text/javascript'>");
out.println("alert('사진 파일첨부불가 \\n첨부가능파일 ("+sUPLOADABLE+")');history.back();");
out.println("</script>");
dbhandle.close(dbhandle.con);
return;
}else{
File upFile = util.getFile(sSavePath,humanimage);
item.write(upFile);
humanimage = upFile.getName();
}
}
}
}
}
// No MultiPart ...
}catch(Exception ee){
career0 = param.getParameterValues("career0");
if(career0 != null && career0.length > 0){
for(int i = 0; i < career0.length; i++){
career0Arr.put(i,career0[i]);
}
}
}
String tmpCareer0 = "";
for(int i = 0; i < career0Arr.size(); i++){
tmpCareer0 += (String)career0Arr.get(i);
}
'가벼운 배움 > jsp' 카테고리의 다른 글
ant path url 매칭하기 (0) | 2017.12.21 |
---|---|
xls, xlsx파일 읽기처리를 위한 poi관련 참고 (0) | 2017.07.07 |
접속 IP 구하기 (0) | 2016.12.26 |
기상청 RSS xml 파싱처리하기 (1) | 2016.11.18 |
jeus에서 jstl fmt:formatData 시 인코딩이 제대로 적용안될때 (1) | 2016.07.27 |