当前位置: 代码迷 >> Java Web开发 >> jsp+uploadify+servlet的实现有关问题
  详细解决方案

jsp+uploadify+servlet的实现有关问题

热度:9295   发布时间:2016-04-10 23:40:14.0
jsp+uploadify+servlet的实现问题
每次运行都说tomcat fail start,请大家帮我看看

这是我的项目配置和代码

index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="uploadify/uploadify.css">  
        <script type="text/javascript" src="scripts/jquery-1.8.0.js"></script>  
        <script type="text/javascript" src="uploadify/jquery.uploadify.min.js"></script>  
        <script>  
    $(document).ready(function() {  
        $('#file_upload').uploadify( {  
            'debug':'true',  
            'swf' : 'uploadify/uploadify.swf',//上传按钮的图片,默认是这个flash文件  
            'uploader' : 'LoginServlet',//上传所处理的服务器  
            'cancelImg' : 'uploadfiy/uploadify-cancel.png',//取消图片  
            'method':'post',  
            'folder' : '/UploadFile',//上传后,所保存文件的路径  
            'queueID' : 'fileQueue',//上传显示进度条的那个div  
            'buttonText' : '请选择文件',  
            //'onUploadComplete': function(file){alert('The file'+file.name+'finished processing!')},//每个文件上传成功后的函数  
            progressData : 'percentage',  
            'auto' : false,  
            'multi' : true,  
            //'onSelect':function(file){  
            //alert("文件"+file.name+"被选择了!");  
            //}  
            //'onQueueComplete' : function(queueData) {  
            //  alert(queueData.filesQueued + 'files were successfully!')  
            //},//当队列中的所有文件上传成功后,弹出共有多少个文件上传成功  
            'onDisable' : function() {  
                alert('uploadify is disable');  
            },//在调用disable方法时候触发  
            //'onCancel':function(){alert('你取消了文件上传')}  
            //'onUploadStart' : function(file) {//在调用上传前触发  
            //alert('The file ' + file.name + ' is being uploaded.')}  
            'onError' : function(errorType,errObj) {  
                alert('The error was: ' + errObj.info)  
            }  
  
        });  
    });  
</script>  
<title>Insert title here</title>
</head>
<body>
<div id="fileQueue"></div>  
        <input id="file_upload" name="file_upload" type="file" multiple="true">  
        <p>  
            <!-- 加上“*”表示当第一个文件上传成功后,立即上传以后队列中的文件,否则需要自己手动 -->  
            <a href="javascript:$('#file_upload').uploadify('upload','*')">上传</a>|  
            <a  
                href="javascript:$('#file_upload').uploadify('cancel',$('.uploadifive-queue-item').first().data('file'))">取消上传</a>  
  相关解决方案