|
|
@@ -23,7 +23,7 @@ public class UploadController {
|
|
|
private IUploadService uploadService;
|
|
|
|
|
|
/**
|
|
|
- * 检查分片是否存��
|
|
|
+ * 检查分片是否存在
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
@@ -39,9 +39,9 @@ public class UploadController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 检查分片是否存��
|
|
|
+ * 检查分片是否存在
|
|
|
* @param identifier 文件秘钥
|
|
|
- * @param filename 文件��
|
|
|
+ * @param filename 文件名
|
|
|
* @param totalChunks 分片总数
|
|
|
* @return
|
|
|
*/
|
|
|
@@ -51,7 +51,7 @@ public class UploadController {
|
|
|
@RequestParam("totalChunks") Integer totalChunks) {
|
|
|
FileChunkResultDTO fileChunkCheckDTO;
|
|
|
try {
|
|
|
- log.info("apk文件上传入参 identifier {}��filename {}, totalChunks {}", identifier, filename, totalChunks);
|
|
|
+ log.info("apk文件上传入参 identifier {}, filename {}, totalChunks {}", identifier, filename, totalChunks);
|
|
|
FileChunkDTO chunkDTO = new FileChunkDTO();
|
|
|
chunkDTO.setIdentifier(identifier);
|
|
|
chunkDTO.setFilename(filename);
|
|
|
@@ -63,7 +63,6 @@ public class UploadController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 上传文件分片
|
|
|
*
|