개

swf오픈소스을 이용한 업로드 간단설명~(확장자 구분)

· 2010-12-08 (수) 10:15:03 · 4991
엑티브 을 이용하여 업로드에서 일본쪽에서 엑티브 사용안한다고

swf오픈 소스을 이용하여 업로드구현

단 zip 파일만 업로드



기본적인것만 작성했음~



1. 오픈swf업로드 이용

2. zip 파일만 허용





http://swfupload.org/ <= swf업로드 다운받는 사이트 ~







css : swfupload 의 css부분

images : swfupload 의 버튼이미지

js : fileprogress.js : 진행바및 상태창 관련

handlers.js : 화면에 출력되거나 파일이 아니거나 하는 alert 창 메세지을 제어하는 스크립트

swfupload : 이 부분은 손을 만지지 않았다



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

mediaupload.jsp



<html>
<head>
<title>:: test ::</title>

<!-- 업로드 스크립트 경로지정-->
<link href="./css/default.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%=strCommonPath%>/media/swfupload/swfupload.js"></script>
<script type="text/javascript" src="<%=strCommonPath%>/media/swfupload/swfupload.queue.js"></script>
<script type="text/javascript" src="<%=strCommonPath%>/media/js/fileprogress.js"></script> <!-- 진행바및 상태창 관련 -->
<script type="text/javascript" src="<%=strCommonPath%>/media/js/handlers.js"></script> <!-- 이벤트 관련 -->
<script type="text/javascript">

var swfu;

window.onload = function() {
var settings = {

flash_url : "/mydocuhut/common/media/swfupload/swfupload.swf",
flash9_url : "/mydocuhut/common/media/swfupload/swfupload_fp9.swf",
upload_url: "jp/mediaup", //해당액션부분지정 <= 난 jp/mediaup 이란 서블릿명을 지정
//post_params: {"param0" : "teos"}, //파일 이외의 파라미터를 보낼때

//이부분은 기본적으로 바뀌지 않는 고정값등을 이부분에서 넣어줄수 있다.
post_params: {"upkind" : document.upFrm.upkind.value
, "idxnum" : "3"

},
file_size_limit : "5120 MB",
file_types : "*.zip", //이부분에 업로드할 확장자을 지정할 수 있다.
file_types_description : "All Files",
//file_types : "*.jpg;*.gif;*.png;*.jpeg",
//file_types_description : "jpg, gif, png, jpeg",//"All Files",
file_upload_limit :1, //최대 첨부 파일 수
file_queue_limit : 0,
custom_settings : {
progressTarget : "fsUploadProgress", //body부분에서 뿌려질 id명이다.
cancelButtonId : "btnCancel"
},
debug: false, //true일경우 debug창이 열린다.

// 버튼 셋팅
button_width: "80",
button_height: "22",
button_placeholder_id: "spanButtonPlaceHolder", //플레쉬로 교체될 DOM 엘리먼트
button_image_url: "/mydocuhut/common/media/images/searchbutton.gif", //플레쉬로 보여줄 버튼 이미지

//button_text: '<span class="theFont">파일찾기..</span>',
//button_text_style: ".theFont { background-color:red; font-size:13px; }",
//button_text_left_padding: 12,
//button_text_top_padding: 3,

button_action : SWFUpload.BUTTON_ACTION.SELECT_FILES,
button_disabled : false,
button_cursor : SWFUpload.CURSOR.HAND,
button_window_mode : SWFUpload.WINDOW_MODE.TRANSPARENT


// The event handler functions are defined in handlers.js

,swfupload_preload_handler : preLoad
,swfupload_load_failed_handler : loadFailed

,file_queued_handler : fileQueued //파일을 선택후 목록에 올린다.
,file_queue_error_handler : fileQueueError
,file_dialog_complete_handler : fileDialogComplete //전송 시작

,upload_start_handler : uploadStart //upload 시작?을때
,upload_progress_handler : uploadProgress
,upload_error_handler : uploadError
,upload_success_handler : uploadSuccess
,upload_complete_handler : uploadComplete
,queue_complete_handler : queueComplete // Queue plugin event

};

swfu = new SWFUpload(settings);

};

// 업로드 시작
function fileDialogComplete_mn() {
try {
/*

업로드 전에 이벤트는 이부분에 입력

널값 체크 등등

*/

//추가 파라미터나 업로드시 넘길 파라미터을 지정
swfu.addPostParam("media_title",document.upFrm.media_title.value);
swfu.startUpload(); //업로드
} catch (ex) {
swfu.debug(ex);
}
}
</script>
<!-- 업로드 스크립트 끝 -->

<body>



<form name="upFrm" action="jp/mediaup" method="post" encType="multipart/form-data">
<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>
<td height="25" align="center" bgcolor="#E8E8E8" class="gray"><strong>제목
<font color="red"><sup>*</sup></font>
</strong></td>
<td> </td>
<td><input size="40" type="text" name="media_title" style="border : 1 solid #6b6b6b; width:270px; height:20px"></td>
</tr>

<tr>

<div id="divStatus"> - 0 Files Uploaded <!-- handlers.js 에서 컨트롤 한다. --></div>
<div class="fieldset flash" id="fsUploadProgress">
<span class="legend">업로드파일</span>
</div> //업로드 파일명 및 flash바 상태을 화면에 출력하는 부분

<span id="spanButtonPlaceHolder"></span> //찾아보기 버튼불러오기



<td height="20" align="center" background="<%=strLangPath%>/img1/bg3.gif" align="center" valign="center" colspan="3">
<input id="btnSubmit" type="button" value="업로드" onclick="fileDialogComplete_mn();" style="margin-center: 2px; font-size: 8pt; height: 20px;" />
<input id="btnCancel" type="button" value="닫기" onclick="javascript:self.close()" style="margin-center: 2px; font-size: 8pt; height: 20px;" />
</td>

</tr>

</table>

</form>

</body>

</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
11-09-08 조회 2,725
11-09-05 조회 2,595
11-09-02 조회 3,447
11-09-01 조회 2,541
11-09-01 조회 2,714
11-09-01 조회 4,003
11-08-31 조회 2,733
11-08-28 조회 2,457
11-08-26 조회 2,367
11-08-19 조회 2,597
11-08-19 조회 2,519
11-08-17 조회 2,626
11-08-17 조회 2,696
11-08-13 조회 2,505
11-08-11 조회 3,476
11-08-11 조회 2,703
11-08-08 조회 2,946
11-08-06 조회 2,692
11-08-06 조회 2,792
11-08-05 조회 2,993
11-08-05 조회 2,426
11-08-04 조회 2,875
11-08-02 조회 2,366
11-07-22 조회 3,927
11-07-21 조회 2,248
11-07-13 조회 2,619
11-07-08 조회 2,927
11-07-05 조회 2,067
11-06-28 조회 3,022
11-06-22 조회 2,512
11-06-22 조회 2,191
11-06-13 조회 2,293
11-06-07 조회 4,114
11-06-04 조회 2,915
11-05-19 조회 3,190
11-05-06 조회 2,937
11-04-20 조회 2,367
11-04-19 조회 2,504
11-04-05 조회 3,058
11-04-04 조회 2,970
11-04-03 조회 2,685
11-04-02 조회 2,805
11-04-01 조회 2,312
11-04-01 조회 2,462
11-04-01 조회 3,056
11-03-25 조회 2,531
11-03-18 조회 2,227
11-03-17 조회 3,168
11-03-10 조회 2,313
11-03-10 조회 2,310
11-03-10 조회 2,562
11-03-07 조회 3,730
11-03-05 조회 2,418
11-03-05 조회 4,906
11-03-02 조회 2,514
11-03-01 조회 2,472
11-02-24 조회 2,542
11-02-24 조회 2,372
11-01-17 조회 5,099
11-01-14 조회 3,054
11-01-07 조회 3,053
10-12-29 조회 2,393
10-12-28 조회 2,606
10-12-24 조회 2,343
10-12-09 조회 2,428
10-12-09 조회 3,630
10-12-08 조회 3,610
10-12-08 조회 3,010
10-12-08 조회 2,854
10-12-08 조회 3,247
10-11-30 조회 2,619
10-11-25 조회 2,482
10-11-15 조회 2,238
10-11-14 조회 4,211
10-10-28 조회 2,891
10-10-26 조회 3,191
10-10-13 조회 2,471
10-10-12 조회 2,693
10-10-09 조회 2,276
10-10-05 조회 3,291
10-09-30 조회 2,957
10-09-26 조회 4,076
10-09-24 조회 2,821
10-09-20 조회 2,659
10-09-20 조회 3,032
10-09-18 조회 2,400
10-09-18 조회 2,442
10-09-17 조회 4,230
10-09-15 조회 3,221
10-09-15 조회 2,710
10-09-15 조회 2,565
10-09-15 조회 2,384
10-09-11 조회 2,543
10-09-11 조회 2,706
10-09-11 조회 2,956
10-06-30 조회 3,648
10-06-30 조회 2,453
10-06-30 조회 2,413
10-06-30 조회 2,565
10-06-11 조회 2,478