`

文件上传、下载

阅读更多
//jsp页面代码
<%@ page contentType="text/html;charset=UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>文件上传</title>
<%-- <script type="text/javascript" src="${ctx}/pc-rs/novatar.frameimpl/scripts/static/js/lib/jquery-1.9.0.min.js"></script> --%>
<script type="text/javascript" src="${contextPath}/pc-rs/novatar.frameimpl/scripts/static/js/lib/ajaxfileupload.js"></script>
<script type="text/javascript">
var upload = {
filetypelist:"doc|docx|xls|xlsx|pdf",
n:0, // 自增  用于生成 file id
isIE: function() {
var isIE = false;
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isOpera = userAgent.indexOf("Opera") > -1;
if (userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1 && !isOpera) {
isIE = true;
    }; //判断是否IE浏览器
    return isIE;
},
param:null,
openUploadBox:function(param) {
upload.param = param;
$(".modal-back-layer").addClass("modal-show");
$(".modal-upload").addClass("modal-show");
$("#ul_upload").empty();
},
addfile:function() {
//var time = new Date().getTime(); //获取时间戳
    if ( upload.isIE() ) {
    $("#ul_upload").append("<li><input type=\"checkbox\" id=\"checkbox"+(++upload.n)+"\"/><input type=\"file\" name=\"file\" id=\"file"+
    upload.n +"\" /></li>"); /*<span id=\"filename"+upload.n+"\"></span>*/
    } else {
    $("#upoload-center").append("<input style=\"width:0px;\" type=\"file\" name=\"file\" id=\"file"+
    (++upload.n) +"\" onchange=\"upload.showname()\" />");
$("#file" + upload.n).click();
    }
},
doupload:function() {
var fileids = new Array();
var extError = false;
$.each($("#ul_upload input[type='checkbox']"), function() {
if (this.checked) {
var index = this.id.substring(8);  // 截取 checkbox1  后面的 index
var filename = $("#file" + index).val();
var extname = filename.substring(filename.lastIndexOf(".") + 1);
if(upload.filetypelist.indexOf(extname) == -1 ) {
alert(extname +"类型的文件不能上传!");
extError = true;
upload.close();
}
fileids.push("file" + index);
}
});
if (extError) {
return false;
}
if ( fileids.length == 0 ){
alert("请选择文件!");
return;
}
//alert("fileids ==> " + JSON.stringify(fileids)) ;
var holdbackNo = $("input[name='holdbackNo']").val();
$.ajaxFileUpload({
url : "${contextPath}/service/ajaxfileupload",
secureuri : false,
fileElementId :fileids,//文件上传域的ID
data : {
formFileName : "file",
businessType : upload.param.businessType,
businessId : upload.param.businessId
},
dataType : 'text/html', //返回值类型 一般设置为json
success : function(data) {
var result = JSON.parse(data);
if (result.status == 1) {
alert("上传成功!");
upload.popresult({result:"success"});
} else {
alert("上传失败!");
upload.popresult({result:"fail"});
}
upload.close();
//alert("data success:" + JSON.stringify(eval( "("+data+")"));
},
error : function(data) {
alert("上传失败:" + JSON.stringify(data));
}
});
},
close : function() {
$(".modal-back-layer").removeClass("modal-show");
$(".modal-upload").removeClass("modal-show");
},
showname: function () {
if (upload.isIE()) {
var filename = $("#file" + upload.n ).val();
filename = filename.substr(filename.lastIndexOf("\\") + 1);
$("#filename" + upload.n ).html(filename);
} else {
$("#ul_upload").append("<li><input type=\"checkbox\" id=\"checkbox"+upload.n+"\"/><span id=\"filename"+upload.n+"\"></span></li>");
var filename = $("#file" + upload.n ).val() ;
filename = filename.substr(filename.lastIndexOf("\\") + 1);
$("#filename" + upload.n ).html(filename);
}
},
showfiles:function(param) {
$(".modal-back-layer").addClass("modal-show");
$(".modal-upload-files").addClass("modal-show");
var params = "needcontrolprocess:"+"attachmentUploadService.queryAttachmentUploadByBusiness|";
params += "businessType:" + param.businessType + "|";
params += "businessId:" + param.businessId + "|";
params += "effective:" + 1; //只取有效的
var url = "${contextPath}/service/pageReq?random=" + Math.random();
$.ajax({
url: url,
type : 'post',
dataType : "json",
data: {
needcontrolprocess : "attachmentUploadService.queryAttachmentUploadByBusiness",
content : params
  },
  success: function (result) {
  var attachmentList = result.expData.attachmentList;
  $.each(attachmentList , function() {
  var att_id = this.id;
  $("#ul_upload_files").append("<li><a href=\"${contextPath}/service/filedownload?relativeUrl="+this.relativeUrl+"&origName="+this.origName+"\">"+ this.origName+"</a>&nbsp;&nbsp;&nbsp;&nbsp;<input type=\"button\" onclick=\"upload.filedel( this,'"+ att_id +"');\" value=\"X\" /></li>");/*<input type=\"button\" onclick=\"upload.filedel(\""+ this.id+"\")\">*/
  });
  }
});
},
filesclose : function() {
$("#ul_upload_files").empty();
$(".modal-back-layer").removeClass("modal-show");
$(".modal-upload-files").removeClass("modal-show");
},
popresult : function ( data ) {},
allchoose : function (check){
$.each($("#ul_upload input[type='checkbox']"), function() {
this.checked = check;
});
},
filedel : function( btn , id ) {
var params = "needcontrolprocess:"+"attachmentUploadService.updateByPrimaryKeySelective|";
params += "id:" + id; //只取有效的
var url = "${contextPath}/service/pageReq?random=" + Math.random();
$.ajax({
url: url,
type : 'post',
dataType : "json",
data: {
needcontrolprocess : "attachmentUploadService.updateByPrimaryKeySelective",
content : params
  },
  success: function (result) {
  //var updateStatus = result.expData.updateStatus;
  $(btn).parent().remove();
  //alert("删除成功!");
  }
});
}
};
$(function(){
var businessid = $("#businessid").val();
if ( businessid != null && businessid != "") {
$(".modal-back-layer").addClass("modal-show");
$(".modal-upload-files").addClass("modal-show");
}
});
</script>
<style type="text/css">
input[type="file"]::-webkit-file-upload-button {
display: none;
width: 0px;
}

.modal-back-layer {
position: fixed;
top: 0px;
left: 0px;
opacity: 0.4;
background-color: #fff;
visibility: hidden;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}

.modal-upload, .modal-upload-files {
position: fixed;
top: 30%;
left: 30%;
width: 40%;
height: 40%;
border: 1px solid #999;
background-color: #aaa;
visibility: hidden;
}

.modal-show {
visibility: visible;
}

.upoload-title {
height: 30px;
width: 100%;
padding-top: 5px;
margin: 0 auto;
font-size: 14px;
line-height: 30px;
vertical-align: middle;
background: #595F71;
color: #FFF;
border-radius: 2px;
}

.upoload-center {
height: 82%;
width: 100%;
font-size: 14px;
overflow: auto;
/* opacity: 0.9;
*/}

.upoload-center-files {
height: 82%;
width: 100%;
font-size: 14px;
overflow: auto;
}

.upoload-footer {
height: 30px;
width: 100%;
padding-top: 5px;
font-size: 14px;
line-height: 30px;
vertical-align: middle;
background: #595F71;
color: #FFF;
border-radius: 2px;
float:right;
/* padding-left: 340px; */
}

.upoload-footer-files {
height: 30px;
width: 100%;
padding-top: 5px;
font-size: 14px;
line-height: 30px;
vertical-align: middle;
background: #595F71;
color: #FFF;
border-radius: 2px;
float:right;
font-size: 14px;
}
.upoload-footer-files input {
float:right;
}


.modal-upload-inner {
margin: 0px;
height: 100%;
width: 100%;
background-color: #fff;
}

.modal-upload-inner-files {
margin: 0px;
height: 100%;
width: 100%;
background-color: #fff;
}

.upload-button {
font-size: 14px;
background-color: #aaa;
margin-left: 110px;
margin-top: 4px;
}

.choose-button {
width: 80px;
font-size: 14px;
margin-left: 20px;
margin-top: 4px;
}

.cancel-button {
font-size: 14px;
margin-left: 20px;
margin-top: 4px;
}

.ul_upload {
margin-top: 10px;
}

.ul_upload li {
height: 36px;
margin-left: 10px;
}
.all-chk {
margin-left: 10px;
}
.table-fn {
height: 30px;
line-height: 30px;
vertical-align: middle;
background: #595F71;
color: #FFF;
padding: 0 20px;
border-radius: 2px;
}
</style>
</head>

<body>
<input type="hidden" name="businessid" id="businessid" value="${ businessid }">

<div class="modal-back-layer"></div>

<div class="modal-upload" id="modal-upload">
<div class="modal-upload-inner">
<div class="upoload-title">
<center>
文件上传
</center>
</div>
<div class="upoload-center" id="upoload-center">
<ul id="ul_upload" class="ul_upload"></ul>
</div>
<div class="upoload-footer">
<input type="checkbox"  value="全选" class="all-chk" onclick="upload.allchoose(this.checked);">全选 <!-- class="btn_gray m-r15" -->
<input type="button"  value="请选择文件" class="choose-button btn_gray m-r15" onclick="upload.addfile();"> <!-- class="choose-button btn_gray m-r15" -->
<input type="button"  value="上传" class="upload-button btn_gray m-r15" onclick="upload.doupload();"> <!-- class="upload-button btn_gray m-r15" -->
<input type="button"  value="取消" class="cancel-button btn_gray m-r15" onclick="upload.close();"> <!-- class="cancel-button btn_gray m-r15" -->
</div>
</div>
</div>

<div class="modal-upload-files" id="modal-files">
<div class="modal-upload-inner-files">
<div class="upoload-title">
<center>
文件详情
</center>
</div>
<div class="upoload-center-files">
<ul id="ul_upload_files" class="ul_upload"></ul>
</div>
<div class="upoload-footer-files">
<input type="button" class="cancel-button btn_gray m-r15" value="关闭" onclick="upload.filesclose()">
</div>
</div>
</div>
</body>
</html>

//////////////js代码//////////////////////////
jQuery
.extend({
createUploadIframe : function(id, uri) {
// create frame
var frameId = 'jUploadFrame' + id;
if (window.ActiveXObject) {
var io = document.createElement('<iframe id="' + frameId
+ '" name="' + frameId + '" />');
if (typeof uri == 'boolean') {
io.src = 'javascript:false';
} else if (typeof uri == 'string') {
io.src = uri;
}
} else {
var io = document.createElement('iframe');
io.id = frameId;
io.name = frameId;
}
io.style.position = 'absolute';
io.style.top = '-1000px';
io.style.left = '-1000px';

document.body.appendChild(io);

return io
},
createUploadForm : function(id, fileElementId ) {
// create form
var formId = 'jUploadForm' + id;
var fileId = 'jUploadFile' + id;
var form = $('<form action="" method="POST" name="' + formId
+ '" id="' + formId
+ '" enctype="multipart/form-data"></form>');
if(typeof(fileElementId) == 'string'){
    fileElementId = [fileElementId]; 

for(var i in fileElementId){
      var oldElement = jQuery('#' + fileElementId[i]);
      var newElement = jQuery(oldElement).clone();   
      jQuery(oldElement).attr('id', fileId);   
      jQuery(oldElement).before(newElement);   
      jQuery(oldElement).appendTo(form);   
}
/* if ( fileElementId instanceof Array ) {
for(var i in fileElementId){
      var oldElement = jQuery('#' + fileElementId[i]); 
      var newElement = jQuery(oldElement).clone();   
      jQuery(oldElement).attr('id', fileId);   
      jQuery(oldElement).before(newElement);   
      jQuery(oldElement).appendTo(form);   

}  else {
var oldElement = $('#' + fileElementId);
var newElement = $(oldElement).clone();
$(oldElement).attr('id', fileId);
$(oldElement).before(newElement);
$(oldElement).appendTo(form);
}*/
// set attributes
$(form).css('position', 'absolute');
$(form).css('top', '-1200px');
$(form).css('left', '-1200px');
$(form).appendTo('body');
return form;
},
addOtherRequestsToForm : function(form, data) {
// add extra parameter
var originalElement = $('<input type="hidden" name="" value="">');
for ( var key in data) {
name = key;
value = data[key];
var cloneElement = originalElement.clone();
cloneElement.attr({
'name' : name,
'value' : value
});
$(cloneElement).appendTo(form);
}
return form;
},

ajaxFileUpload : function(s) {
// TODO introduce global settings, allowing the client to modify
// them for all requests, not only timeout
s = jQuery.extend({}, jQuery.ajaxSettings, s);
var id = new Date().getTime()
var form = jQuery.createUploadForm(id, s.fileElementId);
if (s.data)
form = jQuery.addOtherRequestsToForm(form, s.data);
var io = jQuery.createUploadIframe(id, s.secureuri);
var frameId = 'jUploadFrame' + id;
var formId = 'jUploadForm' + id;
// Watch for a new set of requests
if (s.global && !jQuery.active++) {
jQuery.event.trigger("ajaxStart");
}
var requestDone = false;
// Create the request object
var xml = {}
if (s.global)
jQuery.event.trigger("ajaxSend", [ xml, s ]);
// Wait for a response to come back
var uploadCallback = function(isTimeout) {
var io = document.getElementById(frameId);
try {
if (io.contentWindow) {
xml.responseText = io.contentWindow.document.body ? io.contentWindow.document.body.innerHTML
: null;
xml.responseXML = io.contentWindow.document.XMLDocument ? io.contentWindow.document.XMLDocument
: io.contentWindow.document;
} else if (io.contentDocument) {
xml.responseText = io.contentDocument.document.body ? io.contentDocument.document.body.innerHTML
: null;
xml.responseXML = io.contentDocument.document.XMLDocument ? io.contentDocument.document.XMLDocument
: io.contentDocument.document;
}
} catch (e) {
jQuery.handleError(s, xml, null, e);
}
if (xml || isTimeout == "timeout") {
requestDone = true;
var status;
try {
status = isTimeout != "timeout" ? "success"
: "error";
// Make sure that the request was successful or
// notmodified
if (status != "error") {
// process the data (runs the xml through
// httpData regardless of callback)
var data = jQuery.uploadHttpData(xml,
s.dataType);
// If a local callback was specified, fire it
// and pass it the data
if (s.success)
s.success(data, status);
// Fire the global callback
if (s.global)
jQuery.event.trigger("ajaxSuccess", [ xml,
s ]);
} else
jQuery.handleError(s, xml, status);
} catch (e) {
status = "error";
jQuery.handleError(s, xml, status, e);
}

// The request was completed
if (s.global)
jQuery.event.trigger("ajaxComplete", [ xml, s ]);

// Handle the global AJAX counter
if (s.global && !--jQuery.active)
jQuery.event.trigger("ajaxStop");

// Process result
if (s.complete)
s.complete(xml, status);

jQuery(io).unbind()

setTimeout(function() {
try {
$(io).remove();
$(form).remove();
} catch (e) {
jQuery.handleError(s, xml, null, e);
}

}, 100)

xml = null

}
}
// Timeout checker
if (s.timeout > 0) {
setTimeout(function() {
// Check to see if the request is still happening
if (!requestDone)
uploadCallback("timeout");
}, s.timeout);
}
try {
// var io = $('#' + frameId);
var form = $('#' + formId);
$(form).attr('action', s.url);
$(form).attr('method', 'POST');
$(form).attr('target', frameId);
if (form.encoding) {
form.encoding = 'multipart/form-data';
} else {
form.enctype = 'multipart/form-data';
}
$(form).submit();

} catch (e) {
jQuery.handleError(s, xml, null, e);
}
if (window.attachEvent) {
document.getElementById(frameId).attachEvent('onload',
uploadCallback);
} else {
document.getElementById(frameId).addEventListener('load',
uploadCallback, false);
}
return {
abort : function() {
}
};

},

handleError : function(s, xhr, status, e) {
// If a local callback was specified, fire it
if (s.error) {
s.error.call(s.context || s, xhr, status, e);
}

// Fire the global callback
if (s.global) {
(s.context ? jQuery(s.context) : jQuery.event).trigger(
"ajaxError", [ xhr, s, e ]);
}
},

uploadHttpData : function(r, type) {
var data = !type;
data = type == "xml" || data ? r.responseXML : r.responseText;
// If the type is "script", eval it in global context
if (type == "script")
jQuery.globalEval(data);
// Get the JavaScript object, if JSON is used.
if (type == "json")
eval("data = " + data);
// evaluate scripts within html
if (type == "html")
jQuery("<div>").html(data).evalScripts();
//alert($('param', data).each(function(){alert($(this).attr('value'));}));
return data;
}
})


/**
* 文件上传
* @param request
* @param response
* @throws IOException
*/
@RequestMapping("/ajaxfileupload")
public void ajaxfileupload(HttpServletRequest request, HttpServletResponse response)
throws IOException {
response.setContentType("text/html;charset=utf-8");
String createId = UserUtil.getCurrentUser()==null?"":UserUtil.getCurrentUser().getCreateId();
String uploadBasePath = (String)request.getServletContext().getAttribute("upload.basePath");
logger.info("uploadBasePath : " + uploadBasePath);
Map<String,Object> responseMap = new HashMap<String, Object>(2);
PrintWriter out = response.getWriter();
// request 对象 转化为  MultiPartRequestWrapper类型
MultiPartRequestWrapper  req = (MultiPartRequestWrapper)request;
String formFileName = request.getParameter("formFileName");
String businessType = request.getParameter("businessType");
String businessId = request.getParameter("businessId");
String dirpath  = uploadBasePath + File.separator + businessType;
if ( !new File(dirpath).exists() ) {
new File(dirpath).mkdir();
}
File[] files = req.getFiles(formFileName);
FileInputStream fis = null ;
FileOutputStream fos = null;
if ( files.length <= 0 ) { // 判断文件是否存在
responseMap.put("status", Constants.FAIL);
responseMap.put("reason", "找不到文件!");
} else  {
logger.info("上传文件数量" + files.length );
try {
for ( int i = 0 ; i < files.length ; i ++) {
String origName = req.getFileNames(formFileName)[i];
//String fileName = System.currentTimeMillis() + "_" + origName;
String fileName = UUID.randomUUID() + origName.substring(origName.lastIndexOf(".")) ;
fis = new FileInputStream(files[i]);
fos = new FileOutputStream(
new File(uploadBasePath + File.separator + businessType + File.separator + fileName));
byte[] bytes = new byte[1024];
int n = 0 ;
while( ( n = fis.read(bytes)) > 0){
fos.write(bytes,0,n);
}
logger.info("生成文件: " + uploadBasePath + File.separator + businessType + File.separator + fileName);
responseMap.put("status", Constants.SUCCESS);
responseMap.put("filename",fileName);
AttachmentUpload att= new AttachmentUpload();
att.setId(UUIDGenerator.getUUID());
att.setEffective(Constants.ATTA_EFFECTIVE_YES_STR);
att.setBusinessId(businessId);
att.setBusinessType(businessType);
att.setFileName(fileName);
att.setOrigName(origName);
att.setRelativeUrl(businessType + File.separator + fileName);
att.setUploadTime(new Date());
att.setUploadBy(createId);
attachmentDao.insertSelective(att);
logger.info("附件信息保存成功:" + " businessId : " + businessId + ",businessType : " + businessType);
}
} catch (Exception e)  {
logger.info("文件传送失败: " +  e.getMessage()) ;
responseMap.put("status", Constants.FAIL);
responseMap.put("reason", "文件传送失败!");
e.printStackTrace();
throw e ;
} finally {
fis.close();
fos.close();
}
}
logger.info("文件传送成功!");
out.println(JSON.toJSONString(responseMap));
}


/**
* 文件下载
* @param request
* @param response
* @throws IOException
*/
@RequestMapping("/filedownload")
public void filedownload(HttpServletRequest request,
HttpServletResponse response) throws IOException {
OutputStream out = null;
InputStream in = null;
String relativeUrl = null;
String origName = null;
try {
response.reset();
// 获取相对路径
relativeUrl = request.getParameter("relativeUrl");
origName = request.getParameter("origName");
logger.info("文件下载开始 : " + relativeUrl);
// 获取根目录
String uploadBasePath = (String) request.getServletContext()
.getAttribute("upload.basePath");
logger.info("uploadBasePath : " + uploadBasePath);
// 获得请求文件名
//String filename = relativeUrl.substring(relativeUrl
// .lastIndexOf("\\") + 1);
//logger.info("filename : " + filename);
// 设置文件MIME类型
// 设置Content-Disposition
response.setHeader("Content-Disposition", "attachment;filename="
+ origName);
// 读取目标文件,通过response将目标文件写到客户端
// 获取目标文件的绝对路径
String fullFileName = uploadBasePath + File.separator + relativeUrl;
response.setContentType(Files.probeContentType(Paths
.get(fullFileName)));
response.addHeader("Content-Length", "" + new File(fullFileName).length());
logger.info("文件名称 :" + fullFileName);
// System.out.println(fullFileName);
// 读取文件
out = response.getOutputStream();

in = new FileInputStream(fullFileName);
// 写文件
byte[] buffer = new byte[in.available()];
in.read(buffer);
out.write(buffer);
out.flush();
out.close();
// int b = 0;
// while ((b = in.read(buffer)) > 0) {
// out.write(buffer, 0, b);
// }
} catch (Exception e) {
e.printStackTrace();
logger.info("文件下载失败 !" + e.getMessage());
throw e;
} finally {
in.close();
}
logger.info("文件下载结束: " + relativeUrl);
}







//附件实体类-------------------------------------------------------
package com.sf.novatar.plf.bean;

import java.io.Serializable;
import java.util.Date;

public class AttachmentUpload implements Serializable {
    private String id;

    private String relativeUrl;

    private String fileName;

    private String uploadBy;

    private Date uploadTime;

    private String updateBy;

    private Date updateTime;

    private String description;

    private String effective;  // 1  有效   0 无效

    private String businessType;

    private String businessId;

    private String remark;

    private String origName;

    private static final long serialVersionUID = 1L;

    public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getRelativeUrl() {
        return relativeUrl;
    }

    public void setRelativeUrl(String relativeUrl) {
        this.relativeUrl = relativeUrl == null ? null : relativeUrl.trim();
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName == null ? null : fileName.trim();
    }



    public Date getUploadTime() {
        return uploadTime;
    }

    public void setUploadTime(Date uploadTime) {
        this.uploadTime = uploadTime;
    }


    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description == null ? null : description.trim();
    }

    public String getEffective() {
        return effective;
    }

    public void setEffective(String effective) {
        this.effective = effective == null ? null : effective.trim();
    }

    public String getBusinessType() {
return businessType;
}

public void setBusinessType(String businessType) {
this.businessType = businessType;
}

public String getBusinessId() {
return businessId;
}

public void setBusinessId(String businessId) {
this.businessId = businessId;
}

public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark == null ? null : remark.trim();
    }

    public String getOrigName() {
        return origName;
    }

    public void setOrigName(String origName) {
        this.origName = origName == null ? null : origName.trim();
    }

public String getUploadBy() {
return uploadBy;
}

public void setUploadBy(String uploadBy) {
this.uploadBy = uploadBy;
}

public String getUpdateBy() {
return updateBy;
}

public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
   
}
分享到:
评论

相关推荐

    YOLO算法-数据集数据集-330张图像带标签-椅子-书桌.zip

    YOLO系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,包含数据集配置文件data.yaml,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中,文件名末尾是部分类别名称; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值; 【注】可以下拉页面,在资源详情处查看标签具体内容;

    java毕设项目之ssm蜀都天香酒楼的网站设计与实现+jsp(完整前后端+说明文档+mysql+lw).zip

    项目包含完整前后端源码和数据库文件 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7 数据库工具:Navicat11 开发软件:eclipse/idea Maven包:Maven3.3 服务器:tomcat7

    weixin138社区互助养老+ssm(论文+源码)-kaic.zip

    weixin138社区互助养老+ssm(论文+源码)_kaic.zip

    光纤到户及通信基础设施报装申请表.docx

    光纤到户及通信基础设施报装申请表.docx

    java毕设项目之ssm基于jsp的精品酒销售管理系统+jsp(完整前后端+说明文档+mysql+lw).zip

    项目包含完整前后端源码和数据库文件 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7 数据库工具:Navicat11 开发软件:eclipse/idea Maven包:Maven3.3 服务器:tomcat7

    功能完善的电商数据智能爬虫采集系统项目全套技术资料.zip

    功能完善的电商数据智能爬虫采集系统项目全套技术资料.zip

    YOLO算法-刀数据集-198张图像带标签-刀-枪.zip

    YOLO系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,包含数据集配置文件data.yaml,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中,文件名末尾是部分类别名称; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值; 【注】可以下拉页面,在资源详情处查看标签具体内容;

    Android程序开发初级教程WORD文档doc格式最新版本

    ### Android程序开发初级教程(一):初识Android **平台概述** Google推出的Android操作系统平台已经正式亮相,这是一个基于Linux内核的开源操作系统。对于开发者而言,了解其架构和支持的开发语言至关重要。以下是Android平台的架构概览: **平台架构及功能** 1. **应用框架(Application Framework)**:包含可重用和可替换的组件,确保所有软件在该层面上的平等性。 2. **Dalvik虚拟机(Dalvik Virtual Machine)**:一个基于Linux的虚拟机,为Android应用提供运行环境。 3. **集成浏览器(Integrated Browser)**:基于开源WebKit引擎的浏览器,位于应用层。 4. **优化图形(Optimized Graphics)**:包括自定义的2D图形库和遵循OpenGL ES 1.0标准的3D实现。 5. **SQLite数据库**:用于数据存储。 6. **多媒体支持(Media Support)**:支持通用音频、视频以及多种图片格式(如MPEG4, H.264

    【组合数学答案】组合数学-苏大李凡长版-课后习题答案

    内容概要:本文档是《组合数学答案-网络流传版.pdf》的内容,主要包含了排列组合的基础知识以及一些经典的组合数学题目。这些题目涵盖了从排列数计算、二项式定理的应用到容斥原理的实际应用等方面。通过对这些题目的解析,帮助读者加深对组合数学概念和技巧的理解。 适用人群:适合初学者和有一定基础的学习者。 使用场景及目标:可以在学习组合数学课程时作为练习题参考,也可以在复习考试或准备竞赛时使用,目的是提高解决组合数学问题的能力。 其他说明:文档中的题目覆盖了组合数学的基本知识点,适合逐步深入学习。每个题目都有详细的解答步骤,有助于读者掌握解题思路和方法。

    .net core mvc在线考试系统asp.net考试系统源码考试管理系统 主要技术: 基于.net core mvc架构和sql server数据库,数据库访问采用EF core code fir

    .net core mvc在线考试系统asp.net考试系统源码考试管理系统 主要技术: 基于.net core mvc架构和sql server数据库,数据库访问采用EF core code first,前端采用vue.js和bootstrap。 功能模块: 系统包括前台和后台两个部分,分三种角色登录。 管理员登录后台,拥有科目管理,题库管理,考试管理,成绩管理,用户管理等功能。 教师登录后台,可进行题库管理,考试管理和成绩管理。 用户登录前台,可查看考试列表,参加考试,查看已考试的结果,修改密码等。 系统实现了国际化,支持中英两种语言。 源码打包: 包含全套源码,数据库文件,需求分析和代码说明文档。 运行环境: 运行需vs2019或者以上版本,sql server2012或者以上版本。

    YOLO算法-易拉罐识别数据集-512张图像带标签-可口可乐.zip

    YOLO系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,包含数据集配置文件data.yaml,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中,文件名末尾是部分类别名称; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值; 【注】可以下拉页面,在资源详情处查看标签具体内容;

    (175415460)基于SpringBoot的通用管理系统源码+数据库+项目文档,前后端分离的通用管理系统模版,可用于开发毕业设计

    包含了登陆注册、用户管理、部门管理、文件管理、权限管理、日志管理、个人中心、数据字典和代码生成这九个功能模块 系统采用了基于角色的访问控制,角色和菜单关联,一个角色可以配置多个菜单权限;然后再将用户和角色关联,一位用户可以赋予多个角色。这样用户就可以根据角色拿到该有的菜单权限,更方便管理者进行权限管控。 本系统还封装了文件管理功能,在其他模块如若要实现图片/文件上传预览时,前端只需导入现成的 Vue 组件即可实现(使用 viewerjs 依赖实现),后端只需定义 String 类型的实体类变量即可,无需再去研究文件上传预览的相关功能,简化了开发者的工作量。内容来源于网络分享,如有侵权请联系我删除。另外如果没有积分的同学需要下载,请私信我。

    三相10Kw光伏并网逆变器 包含全套理图 PCB 源代码

    三相10Kw光伏并网逆变器。包含全套理图 PCB 源代码

    GJB 5236-2004 军用软件质量度量

    GJB 5236-2004 军用软件质量度量文档,本称准规定了车用软件产品的质重模型和基本的度量。本标准为确定车用软件质量需求和衡量军用 软件产品的能力提供了一个框架。

    (179941432)基于MATLAB车牌识别系统【GUI含界面】.zip

    基于MATLAB车牌识别系统【GUI含界面】.zip。内容来源于网络分享,如有侵权请联系我删除。另外如果没有积分的同学需要下载,请私信我。

    (9546452)宿舍管理系统

    【宿舍管理系统】是一种专为高校或住宿机构设计的信息化解决方案,旨在提高宿舍管理的效率和准确性。该系统包含了多项核心功能,如宿舍管理员管理、宿舍信息维护、查询、卫生检查以及电费缴纳等,旨在实现全面的宿舍运营自动化。 **宿舍管理员管理**功能允许指定的管理员进行用户权限分配和角色设定。这包括对管理员账户的创建、修改和删除,以及设置不同的操作权限,例如只读、编辑或管理员权限。通过这样的权限控制,可以确保数据的安全性和管理的规范性。 **宿舍添加与管理**是系统的基础模块。管理员可以录入宿舍的基本信息,如宿舍号、楼栋、楼层、房间类型(单人间、双人间等)、容纳人数、设施配置等。此外,系统还支持批量导入或导出宿舍信息,方便数据的备份和迁移。 **查询功能**是系统的重要组成部分,它允许管理员和学生根据不同的条件(如宿舍号、楼栋、学生姓名等)快速查找宿舍信息。此外,系统还可以生成各种统计报告,如宿舍占用率、空闲宿舍数量等,以便于决策者进行资源优化。 **卫生检查**功能则是对宿舍卫生状况进行定期评估。管理员可设定检查计划,包括检查周期、评分标准等,并记录每次检查的结果。系统能自动生成卫生报表,用于

    YOLO算法-包装好的服装数据集-654张图像带标签-.zip

    YOLO系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,包含数据集配置文件data.yaml,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中,文件名末尾是部分类别名称; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值; 【注】可以下拉页面,在资源详情处查看标签具体内容;

    九缸星形发动机点火器3D

    九缸星形发动机点火器3D

    小程序毕业设计项目-音乐播放器

    本项目可以作为小程序毕设项目,主要功能为音乐播放器,主要功能是:可以播放歌曲(采用mp3网络连接实现)、专辑封面播放时可以旋转,能够实现开始和暂停播放,可以点击下一首歌曲,主页面实现动态轮播图

    出差审批单(表格模板).docx

    出差审批单(表格模板).docx

Global site tag (gtag.js) - Google Analytics