Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
fileCenter
概览
Overview
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
李东旭
fileCenter
Commits
24050f7c
提交
24050f7c
authored
2月 28, 2023
作者:
passer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
文件服务器下载共享文件接口
父级
3fdce195
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
29 行增加
和
25 行删除
+29
-25
src/main/java/com/file/center/controller/OCRToolController.java
+2
-2
src/main/java/com/file/center/util/CopyImageDTO.java
+19
-8
src/main/java/com/file/center/util/ImageUtils.java
+8
-15
没有找到文件。
src/main/java/com/file/center/controller/OCRToolController.java
查看文件 @
24050f7c
...
...
@@ -3,7 +3,6 @@ package com.file.center.controller;
import
com.file.center.util.CopyImageDTO
;
import
com.file.center.util.ImageUtils
;
import
com.file.center.util.OCRAPI
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
...
...
@@ -21,6 +20,7 @@ public class OCRToolController {
@PostMapping
(
"/copyImage"
)
public
String
copyImage
(
@RequestBody
CopyImageDTO
dto
)
throws
Exception
{
return
ImageUtils
.
downloadByURL
(
dto
.
getUrlString
(),
dto
.
getFileName
(),
OCRAPI
.
getImagePre
(),
dto
.
getLinux
());
System
.
out
.
println
(
"参数是:"
+
dto
.
toString
());
return
ImageUtils
.
downloadByURL
(
dto
);
}
}
src/main/java/com/file/center/util/CopyImageDTO.java
查看文件 @
24050f7c
...
...
@@ -11,7 +11,7 @@ public class CopyImageDTO {
private
String
fileName
;
private
B
oolean
isLinux
;
private
b
oolean
isLinux
;
private
String
savePath
=
OCRAPI
.
getImagePre
();
...
...
@@ -33,13 +33,6 @@ public class CopyImageDTO {
this
.
fileName
=
fileName
;
}
public
Boolean
getLinux
()
{
return
isLinux
;
}
public
void
setLinux
(
Boolean
linux
)
{
isLinux
=
linux
;
}
public
String
getSavePath
()
{
return
savePath
;
...
...
@@ -48,4 +41,22 @@ public class CopyImageDTO {
public
void
setSavePath
(
String
savePath
)
{
this
.
savePath
=
savePath
;
}
@Override
public
String
toString
()
{
return
"CopyImageDTO{"
+
"urlString='"
+
urlString
+
'\''
+
", fileName='"
+
fileName
+
'\''
+
", isLinux="
+
isLinux
+
", savePath='"
+
savePath
+
'\''
+
'}'
;
}
public
boolean
isLinux
()
{
return
isLinux
;
}
public
void
setLinux
(
boolean
linux
)
{
isLinux
=
linux
;
}
}
src/main/java/com/file/center/util/ImageUtils.java
查看文件 @
24050f7c
package
com
.
file
.
center
.
util
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.InputStream
;
...
...
@@ -20,18 +17,14 @@ public class ImageUtils {
/**
* 根据图片的URL从网页下载图片
*
* @param urlString 图片URL地址
* @param filename 下载后的图片名称
* @param savePath 保存路径
* @param dto 图片URL地址
* @throws Exception
*/
public
static
String
downloadByURL
(
String
urlString
,
String
filename
,
String
savePath
,
Boolean
isLinux
)
throws
Exception
{
String
FileSeparator
=
"\\"
;
if
(
isLinux
)
{
FileSeparator
=
"/"
;
}
public
static
String
downloadByURL
(
CopyImageDTO
dto
)
throws
Exception
{
// 构造URL
URL
url
=
new
URL
(
urlString
);
URL
url
=
new
URL
(
dto
.
getUrlString
()
);
// 打开连接
URLConnection
con
=
url
.
openConnection
();
// 设置请求超时为5s
...
...
@@ -44,11 +37,11 @@ public class ImageUtils {
// 读取到的数据长度
int
len
;
// 输出的文件流
File
sf
=
new
File
(
savePath
);
File
sf
=
new
File
(
dto
.
getSavePath
()
);
if
(!
sf
.
exists
())
{
sf
.
mkdirs
();
}
OutputStream
os
=
new
FileOutputStream
(
sf
.
getPath
()
+
FileSeparator
+
"part"
+
FileSeparator
+
filename
);
OutputStream
os
=
new
FileOutputStream
(
sf
.
getPath
()
+
File
.
separator
+
dto
.
getFileName
()
);
// 开始读取
while
((
len
=
is
.
read
(
bs
))
!=
-
1
)
{
os
.
write
(
bs
,
0
,
len
);
...
...
@@ -56,7 +49,7 @@ public class ImageUtils {
// 完毕,关闭所有链接
os
.
close
();
is
.
close
();
return
savePath
+
FileSeparator
+
"part"
+
FileSeparator
+
filename
;
return
dto
.
getSavePath
()
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论