Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
168b544f
Commit
168b544f
authored
4 years ago
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SQL层级处理的支持
parent
62dfaa50
master
1.0-SNAPSHOT
test
ver1.0
ver1.1
ver1.2
ver1.3
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
54 additions
and
0 deletions
+54
-0
FileHelper.java
...src/main/java/com/yanzuoguang/util/helper/FileHelper.java
+15
-0
ImageHelper.java
...image/src/main/java/com/yanzuoguang/util/ImageHelper.java
+30
-0
100M.mp4.jpg
yzg-util-image/src/test/java/helper/100M.mp4.jpg
+0
-0
TestMediaHelper.java
yzg-util-image/src/test/java/helper/TestMediaHelper.java
+9
-0
z001594372388232a3017ad69c82a342.MOV
...src/test/java/helper/z001594372388232a3017ad69c82a342.MOV
+0
-0
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/helper/FileHelper.java
View file @
168b544f
...
@@ -2,6 +2,9 @@ package com.yanzuoguang.util.helper;
...
@@ -2,6 +2,9 @@ package com.yanzuoguang.util.helper;
import
java.io.*
;
import
java.io.*
;
import
java.nio.file.Files
;
import
java.nio.file.Path
;
import
java.nio.file.Paths
;
/**
/**
* 登录相关函数
* 登录相关函数
...
@@ -10,6 +13,18 @@ import java.io.*;
...
@@ -10,6 +13,18 @@ import java.io.*;
*/
*/
public
class
FileHelper
{
public
class
FileHelper
{
/**
* 获取文件类型
*
* @param file 来源文件
* @return
* @throws IOException
*/
public
static
String
getMimeType
(
String
file
)
throws
IOException
{
Path
path
=
Paths
.
get
(
file
);
String
contentType
=
contentType
=
Files
.
probeContentType
(
path
);
return
contentType
;
}
/**
/**
* 创建目录
* 创建目录
...
...
This diff is collapsed.
Click to expand it.
yzg-util-image/src/main/java/com/yanzuoguang/util/ImageHelper.java
View file @
168b544f
package
com
.
yanzuoguang
.
util
;
package
com
.
yanzuoguang
.
util
;
import
com.yanzuoguang.util.exception.CodeException
;
import
com.yanzuoguang.util.helper.FileHelper
;
import
net.coobird.thumbnailator.Thumbnails
;
import
net.coobird.thumbnailator.Thumbnails
;
import
javax.imageio.IIOImage
;
import
javax.imageio.IIOImage
;
...
@@ -24,6 +26,34 @@ public class ImageHelper {
...
@@ -24,6 +26,34 @@ public class ImageHelper {
public
static
final
float
DEFAULT_SIZE
=
1
f
;
public
static
final
float
DEFAULT_SIZE
=
1
f
;
public
static
final
float
DEFAULT_QUALITY
=
1
f
;
public
static
final
float
DEFAULT_QUALITY
=
1
f
;
public
static
final
int
MEDIA_TYPE_IMAGE
=
0
;
public
static
final
int
MEDIA_TYPE_VIDEO
=
1
;
public
static
final
int
MEDIA_TYPE_AUDIO
=
2
;
/**
* 获取文件媒体类型
*
* @param file
* @return
* @throws IOException
*/
public
static
int
getMediaType
(
String
file
)
throws
IOException
{
String
mimeType
=
FileHelper
.
getMimeType
(
file
);
if
(
mimeType
==
null
)
{
throw
new
RuntimeException
(
"不能识别文件类型"
+
file
);
}
// System.out.println(mimeType);
if
(
mimeType
.
startsWith
(
"video/"
))
{
return
MEDIA_TYPE_VIDEO
;
}
else
if
(
mimeType
.
startsWith
(
"audio/"
))
{
return
MEDIA_TYPE_AUDIO
;
}
else
if
(
mimeType
.
startsWith
(
"image/"
))
{
return
MEDIA_TYPE_IMAGE
;
}
else
{
throw
new
RuntimeException
(
"文件类型不为图片、音频、视频"
);
}
}
/**
/**
* 压缩图片
* 压缩图片
*
*
...
...
This diff is collapsed.
Click to expand it.
yzg-util-image/src/test/java/helper/100M.mp4.jpg
0 → 100644
View file @
168b544f
400 KB
This diff is collapsed.
Click to expand it.
yzg-util-image/src/test/java/helper/TestMediaHelper.java
View file @
168b544f
package
helper
;
package
helper
;
import
com.yanzuoguang.util.ImageHelper
;
import
com.yanzuoguang.util.MediaHelper
;
import
com.yanzuoguang.util.MediaHelper
;
import
com.yanzuoguang.util.thread.RunnableListAuto
;
import
com.yanzuoguang.util.thread.RunnableListAuto
;
import
it.sauronsoftware.jave.Encoder
;
import
it.sauronsoftware.jave.Encoder
;
...
@@ -18,6 +19,14 @@ public class TestMediaHelper {
...
@@ -18,6 +19,14 @@ public class TestMediaHelper {
public
float
[]
quotes
=
new
float
[]{
1
f
,
1
f
,
0.5f
,
0.25f
,
0.5f
,
0.25f
};
public
float
[]
quotes
=
new
float
[]{
1
f
,
1
f
,
0.5f
,
0.25f
,
0.5f
,
0.25f
};
@Test
public
void
testMediaType
()
throws
EncoderException
,
IOException
{
System
.
out
.
println
(
"100M.mp4 "
+
ImageHelper
.
getMediaType
(
getFile
(
"100M.mp4"
)));
System
.
out
.
println
(
"100M.mp4.jpg "
+
ImageHelper
.
getMediaType
(
getFile
(
"100M.mp4.jpg"
)));
System
.
out
.
println
(
"xuziming.mp4 "
+
ImageHelper
.
getMediaType
(
getFile
(
"xuziming.mp4"
)));
System
.
out
.
println
(
"z001594372388232a3017ad69c82a342.MOV "
+
ImageHelper
.
getMediaType
(
getFile
(
"z001594372388232a3017ad69c82a342.MOV"
)));
}
@Test
@Test
public
void
printEncoding
()
throws
EncoderException
{
public
void
printEncoding
()
throws
EncoderException
{
Encoder
encoder
=
new
Encoder
();
Encoder
encoder
=
new
Encoder
();
...
...
This diff is collapsed.
Click to expand it.
yzg-util-image/src/test/java/helper/z001594372388232a3017ad69c82a342.MOV
0 → 100644
View file @
168b544f
File added
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment