Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
01_qingyun
backend
Commits
c4d1a956
Unverified
Commit
c4d1a956
authored
Apr 6, 2023
by
翔驰 周
Browse files
Options
Downloads
Patches
Plain Diff
update:backend
parent
fbd488d7
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/sentiStrength-v1.0.25.jar
+0
-0
0 additions, 0 deletions
lib/sentiStrength-v1.0.25.jar
pom.xml
+1
-1
1 addition, 1 deletion
pom.xml
src/main/java/com/sentistrength/service/Impl/dataMining/DataMiningServiceImpl.java
+5
-3
5 additions, 3 deletions
...rength/service/Impl/dataMining/DataMiningServiceImpl.java
with
6 additions
and
4 deletions
lib/sentiStrength-v1.0.2
4
.jar
→
lib/sentiStrength-v1.0.2
5
.jar
+
0
−
0
View file @
c4d1a956
No preview for this file type
This diff is collapsed.
Click to expand it.
pom.xml
+
1
−
1
View file @
c4d1a956
...
...
@@ -22,7 +22,7 @@
<artifactId>
sentistrength_backend
</artifactId>
<version>
1.0
</version>
<scope>
system
</scope>
<systemPath>
${project.basedir}/lib/sentiStrength-v1.0.2
4
.jar
</systemPath>
<systemPath>
${project.basedir}/lib/sentiStrength-v1.0.2
5
.jar
</systemPath>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/sentistrength/service/Impl/dataMining/DataMiningServiceImpl.java
+
5
−
3
View file @
c4d1a956
...
...
@@ -83,10 +83,12 @@ public class DataMiningServiceImpl implements DataMiningService {
if
(
inFile
.
size
()
==
0
)
{
throw
new
MyServiceException
(
"DS001"
,
"Arff文件为空"
);
}
try
{
outFile
=
uk
.
ac
.
wlv
.
wkaclass
.
Arff
.
deleteColumnFromArff
(
inFile
,
removeDataColumnVO
.
getColToRemove
());
if
(
outFile
==
null
)
{
throw
new
MyServiceException
(
"DS004"
,
"Arff文件删除
列
出错"
);
}
catch
(
Exception
e
)
{
throw
new
MyServiceException
(
"DS004"
,
"
将
Arff文件
某一列
删除出错"
);
}
return
outFile
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment