bbs5/update.jsp > JSP

본문 바로가기
사이트 내 전체검색

JSP

bbs5/update.jsp

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 18회 작성일 24-10-29 14:45

본문

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>


<%@ include file="/include/header.jsp" %>


<%

request.setCharacterEncoding("utf-8"); //한글 깨짐 방지


//파일 저장 폴더 생성 경로(프로젝트 안에 upload 폴더 생성 및 지정 추천) 

//String uploadPath=request.getRealPath("/upload");

String uploadPath="C:\\jsp\\web01\\src\\main\\webapp\\upload"; //window 폴더 경로

int size=10*1024*1024; //파일 최대 사이즈 (10메가)


MultipartRequest multi=new MultipartRequest(request,uploadPath,size,"utf-8",new DefaultFileRenamePolicy());


String code=multi.getParameter("code");

String uid=multi.getParameter("uid");

String gongji=multi.getParameter("gongji");

String subject=multi.getParameter("subject");

String comment=multi.getParameter("comment");


//검색 관련

String field=multi.getParameter("field");

String search=multi.getParameter("search");


//달력 날짜 관련

String nYear = multi.getParameter("nYear");

String nMonth = multi.getParameter("nMonth");

String nDate = multi.getParameter("nDate");


Enumeration files=multi.getFileNames();


//첨부파일1

String file1=(String)files.nextElement(); //첨부파일1 존재한다면

String file1_name=multi.getOriginalFileName(file1); //사용자가 올린 파일명

String file1_rename=multi.getFilesystemName(file1); //중복된 파일명을 새로운 파일명으로 변경


if(file1_name == null){ //첨부파일1 없다면

file1_name = ""; //null 값이 아닌 비어있는 값으로 대체

file1_rename = ""; //null 값이 아닌 비어있는 값으로 대체

}


// 홑따옴표 처리

subject = subject.replaceAll("'", "''" );

comment = comment.replaceAll("'", "''" );


//디비 수정

String sql;

if(file1_name != null && file1_name != ""){ //첨부파일 존재

sql = "update "+code+" set subject='"+subject+"',comment='"+comment+"',gongji='"+gongji+"',file1='"+file1_rename+"',file1_o='"+file1_name+"',nyear="+nYear+",nmonth="+nMonth+",ndate="+nDate+" where uid="+uid;

}else{

sql = "update "+code+" set subject='"+subject+"',comment='"+comment+"',gongji='"+gongji+"',nyear="+nYear+",nmonth="+nMonth+",ndate="+nDate+" where uid="+uid;

}

Connection conn=DriverManager.getConnection(url, user, password);

Statement stmt=conn.createStatement();

stmt.executeUpdate(sql);


stmt.close();

conn.close();

%>

<script>

location.href="list.jsp?code=<%=code%>&field=<%=field%>&search=<%=search%>&nYear=<%=nYear%>&nMonth=<%=nMonth%>&nDate=<%=nDate%>";

</script>

추천0

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
150
어제
123
최대
10,760
전체
263,749
Copyright © dancePKT . All rights reserved.