-1

私はSWFUploadを初めて使用し、現在ドキュメントを読んでいます。JavaでSWFUploadを使用した例が必要です。ありがとうございます。

4

2 に答える 2

1

http://e-blog-java.blogspot.com/2011/03/upload-using-swfupload-component.html

彼はまた、実際の動作を確認するためのサンプル ソース コードも提供していました。

于 2011-04-07T19:17:02.800 に答える
1

SWFUpload、jQuery、JSP、Java、Spring の実装例

最初の jsp:

<%@ page language="java" pageEncoding="UTF-8" %>
<head>
<script type="text/javascript" src="<c:url value="/public/js/swfupload/swfupload.js"/>"></script>  
<script type="text/javascript" src="<c:url value="/public/js/jquery-plugins/ jquery.swfupload.js"/>"></script> 
<script type="text/javascript">
$(function(){
    $('.swfupload-control').swfupload({
        // Backend Settings
        upload_url: "<c:url value="/upload;jsessionid=${pageContext.session.id}"/>",    // Relative to the SWF file (or you can use absolute paths)

        // Flash Settings
        flash_url : "<c:url value="/public/js/swfupload/swfupload.swf"/>",

    //IMPORTANT: you need to set file_post_name otherwise flash sets it as Filedata, which does not conform to bean naming conventions. 
        file_post_name: "file",

        // File Upload Settings
        file_size_limit : "102400", // 100MB
        file_types : "*.*",
        file_types_description : "All Files",
        file_upload_limit : "10",
        file_queue_limit : "0",

        // Button Settings
        button_image_url : "<c:url value="/public/js/swfupload/XPButtonUploadText_61x22.png"/>", // Relative to the SWF file
        button_placeholder_id : "spanButtonPlaceholder",
        button_width: 61,
        button_height: 22



    });


    // assign our event handlers
    $('.swfupload-control')
        .bind('fileQueued', function(event, file){
            // start the upload once a file is queued
            $(this).swfupload('startUpload');
        })
        .bind('uploadComplete', function(event, file){
            alert('Upload completed - '+file.name+'!');
            // start the upload (if more queued) once an upload is complete
            $(this).swfupload('startUpload');
        });

}); 

</script>
<head>
<body>
<div id="file_upload"></div>
<div class="swfupload-control">
   <span id="spanButtonPlaceholder"></span>
</div>
</body>

コントローラ:

@Controller
public class UploadController {
Logger logger = LoggerFactory.getLogger(this.getClass());

@RequestMapping(value="/upload", method=RequestMethod.POST)
public String addMultiple(
    final HttpServletRequest request
    , final HttpServletResponse response
    , @RequestParam("file") MultipartFile file //NOTE: `@RequestParam("file")` matches `file_post_name: "file"`
    ){
        logger.debug(uploadedFile.getOriginalFilename());

    }
} 

また、設定にこれがあることを確認してください:

<bean id="multipartResolver"
   class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

</bean>

スプリングを使用していない場合は、HttpServeletRequest を MultiPartRequestWrapper としてキャストできる可能性があります。

File[] files = ((MultiPartRequestWrapper)request).getFiles("Filedata");

このソリューションには COS (Com O'Reilly Servlet) は必要ありません。代わりに、より一般的な javax.servlet.http.HttpServletRequest を使用するだけです

ソース(stackoverflowではリンクを投稿できません):

  1. swfupload.org/forum/generaldiscussion/1087
  2. demo.swfupload.org/Documentation/#setFilePostName
  3. blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/
  4. webdeveloperplus.com/jquery/multiple-file-upload-with-progress-bar-using-jquery/ (jquery アップローダーのより適切な実装)
于 2011-06-10T13:17:48.593 に答える