엑티브 을 이용하여 업로드에서 일본쪽에서 엑티브 사용안한다고
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>
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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7430 |
|
11년 전 | 4947 | |
| 7429 | 11년 전 | 1780 | ||
| 7428 |
멋진남자임
|
11년 전 | 1174 | |
| 7427 |
sdflksdj2
|
11년 전 | 833 | |
| 7426 | 11년 전 | 1368 | ||
| 7425 | 11년 전 | 1393 | ||
| 7424 | 11년 전 | 1055 | ||
| 7423 |
SeungYeon
|
11년 전 | 565 | |
| 7422 | 11년 전 | 815 | ||
| 7421 |
sdflksdj2
|
11년 전 | 691 | |
| 7420 | 11년 전 | 974 | ||
| 7419 |
|
11년 전 | 1406 | |
| 7418 |
멋진남자임
|
11년 전 | 1445 | |
| 7417 | 11년 전 | 609 | ||
| 7416 |
senseme
|
11년 전 | 1237 | |
| 7415 | 11년 전 | 967 | ||
| 7414 | 11년 전 | 717 | ||
| 7413 | 11년 전 | 4853 | ||
| 7412 | 11년 전 | 4408 | ||
| 7411 |
holla
|
11년 전 | 901 | |
| 7410 | 11년 전 | 4255 | ||
| 7409 | 11년 전 | 3930 | ||
| 7408 | 11년 전 | 4274 | ||
| 7407 | 11년 전 | 5093 | ||
| 7406 | 11년 전 | 4737 | ||
| 7405 | 11년 전 | 4306 | ||
| 7404 | 11년 전 | 766 | ||
| 7403 | 11년 전 | 5687 | ||
| 7402 | 11년 전 | 1525 | ||
| 7401 |
|
11년 전 | 980 | |
| 7400 | 11년 전 | 2978 | ||
| 7399 |
멋진남자임
|
11년 전 | 925 | |
| 7398 |
파랑새1597
|
11년 전 | 2714 | |
| 7397 | 11년 전 | 2279 | ||
| 7396 |
basketball
|
11년 전 | 1380 | |
| 7395 | 11년 전 | 1618 | ||
| 7394 | 11년 전 | 937 | ||
| 7393 | 11년 전 | 2077 | ||
| 7392 | 11년 전 | 854 | ||
| 7391 |
잘살아보자
|
11년 전 | 5367 | |
| 7390 |
잘살아보자
|
11년 전 | 2232 | |
| 7389 |
잘살아보자
|
11년 전 | 3324 | |
| 7388 |
파랑새1597
|
11년 전 | 932 | |
| 7387 | 11년 전 | 1109 | ||
| 7386 |
프리랜서퍼블리셔
|
11년 전 | 974 | |
| 7385 | 11년 전 | 1575 | ||
| 7384 |
울라라라우
|
11년 전 | 896 | |
| 7383 | 11년 전 | 1562 | ||
| 7382 |
잘살아보자
|
11년 전 | 4233 | |
| 7381 |
잘살아보자
|
11년 전 | 2005 | |
| 7380 |
잘살아보자
|
11년 전 | 1950 | |
| 7379 |
잘살아보자
|
11년 전 | 5912 | |
| 7378 |
senseme
|
11년 전 | 1907 | |
| 7377 |
잘살아보자
|
11년 전 | 2754 | |
| 7376 | 11년 전 | 2422 | ||
| 7375 |
잘살아보자
|
11년 전 | 1055 | |
| 7374 |
잘살아보자
|
11년 전 | 3167 | |
| 7373 |
잘살아보자
|
11년 전 | 2484 | |
| 7372 |
잘살아보자
|
11년 전 | 5834 | |
| 7371 |
잘살아보자
|
11년 전 | 3472 | |
| 7370 |
잘살아보자
|
11년 전 | 1917 | |
| 7369 |
잘살아보자
|
11년 전 | 2176 | |
| 7368 |
ksdhtm56
|
11년 전 | 576 | |
| 7367 | 11년 전 | 1440 | ||
| 7366 | 11년 전 | 941 | ||
| 7365 | 11년 전 | 3554 | ||
| 7364 |
잘살아보자
|
11년 전 | 1404 | |
| 7363 |
잘살아보자
|
11년 전 | 1381 | |
| 7362 |
잘살아보자
|
11년 전 | 1518 | |
| 7361 | 11년 전 | 3603 | ||
| 7360 | 11년 전 | 3568 | ||
| 7359 | 11년 전 | 3388 | ||
| 7358 |
멋진남자임
|
11년 전 | 1038 | |
| 7357 | 11년 전 | 3422 | ||
| 7356 | 11년 전 | 2609 | ||
| 7355 | 11년 전 | 3202 | ||
| 7354 |
파랑새1597
|
11년 전 | 656 | |
| 7353 |
잘살아보자
|
11년 전 | 2432 | |
| 7352 |
잘살아보자
|
11년 전 | 2425 | |
| 7351 |
잘살아보자
|
11년 전 | 2485 | |
| 7350 |
잘살아보자
|
11년 전 | 1480 | |
| 7349 |
잘살아보자
|
11년 전 | 1973 | |
| 7348 |
잘살아보자
|
11년 전 | 1290 | |
| 7347 |
잘살아보자
|
11년 전 | 1084 | |
| 7346 |
멋진남자임
|
11년 전 | 1654 | |
| 7345 | 11년 전 | 1002 | ||
| 7344 | 11년 전 | 3882 | ||
| 7343 | 11년 전 | 3666 | ||
| 7342 | 11년 전 | 1293 | ||
| 7341 | 11년 전 | 2532 | ||
| 7340 |
|
11년 전 | 943 | |
| 7339 | 11년 전 | 1740 | ||
| 7338 | 11년 전 | 3355 | ||
| 7337 | 11년 전 | 3667 | ||
| 7336 | 11년 전 | 4608 | ||
| 7335 | 11년 전 | 984 | ||
| 7334 | 11년 전 | 1540 | ||
| 7333 | 11년 전 | 2946 | ||
| 7332 |
|
11년 전 | 1119 | |
| 7331 |
KeePin뽁이
|
11년 전 | 1109 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기