Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
bi-report
Project
Project
Details
Activity
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
data
bi-report
Commits
c24450ea
Commit
c24450ea
authored
May 01, 2020
by
赵建伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upadte codes
parent
b7677408
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
8 deletions
+14
-8
encodings.xml
.idea/encodings.xml
+5
-0
workspace.xml
.idea/workspace.xml
+5
-4
workspace.xml
lib/java/bi-report-service/.idea/workspace.xml
+1
-1
ProperUtils.java
.../java/com/gmei/data/gateway/server/utils/ProperUtils.java
+3
-3
No files found.
.idea/encodings.xml
0 → 100644
View file @
c24450ea
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"Encoding"
defaultCharsetForPropertiesFiles=
"UTF-8"
/>
</project>
\ No newline at end of file
.idea/workspace.xml
View file @
c24450ea
...
...
@@ -62,7 +62,7 @@
<property
name=
"project.structure.last.edited"
value=
"Global Libraries"
/>
<property
name=
"project.structure.proportion"
value=
"0.0"
/>
<property
name=
"project.structure.side.proportion"
value=
"0.2"
/>
<property
name=
"settings.editor.selected.configurable"
value=
"
preferences.externalDependencies
"
/>
<property
name=
"settings.editor.selected.configurable"
value=
"
File.Encoding
"
/>
</component>
<component
name=
"RecentsManager"
>
<key
name=
"CopyFile.RECENT_KEYS"
>
...
...
@@ -120,7 +120,7 @@
<workItem
from=
"1588154352798"
duration=
"195000"
/>
<workItem
from=
"1588220085338"
duration=
"7993000"
/>
<workItem
from=
"1588248522289"
duration=
"2820000"
/>
<workItem
from=
"1588344251422"
duration=
"1
056
000"
/>
<workItem
from=
"1588344251422"
duration=
"1
165
000"
/>
</task>
<task
id=
"LOCAL-00001"
summary=
"add init codes."
>
<created>
1587723565207
</created>
...
...
@@ -337,9 +337,10 @@
<screen
x=
"246"
y=
"1080"
width=
"1920"
height=
"1151"
/>
</state>
<state
x=
"1038"
y=
"1373"
key=
"RollbackChangesDialog/246.1080.1920.1151/0.22.1920.1058@246.1080.1920.1151"
timestamp=
"1587898773703"
/>
<state
x=
"
694"
y=
"1237"
key=
"SettingsEditor"
timestamp=
"158772031978
2"
>
<screen
x=
"
246"
y=
"1080"
width=
"1920"
height=
"1151
"
/>
<state
x=
"
448"
y=
"176"
key=
"SettingsEditor"
timestamp=
"158834685766
2"
>
<screen
x=
"
0"
y=
"22"
width=
"1920"
height=
"1129
"
/>
</state>
<state
x=
"448"
y=
"176"
key=
"SettingsEditor/0.22.1920.1129@0.22.1920.1129"
timestamp=
"1588346857662"
/>
<state
x=
"694"
y=
"1237"
key=
"SettingsEditor/246.1080.1920.1151/0.22.1920.1058@246.1080.1920.1151"
timestamp=
"1587720319782"
/>
<state
x=
"560"
y=
"312"
key=
"Vcs.Push.Dialog.v2"
timestamp=
"1588232541898"
>
<screen
x=
"0"
y=
"22"
width=
"1920"
height=
"1058"
/>
...
...
lib/java/bi-report-service/.idea/workspace.xml
View file @
c24450ea
...
...
@@ -216,7 +216,7 @@
<workItem
from=
"1588148891822"
duration=
"2318000"
/>
<workItem
from=
"1588152718016"
duration=
"1463000"
/>
<workItem
from=
"1588154601852"
duration=
"28557000"
/>
<workItem
from=
"1588344252163"
duration=
"
1944
000"
/>
<workItem
from=
"1588344252163"
duration=
"
2588
000"
/>
</task>
<servers
/>
</component>
...
...
lib/java/bi-report-service/service-server/src/main/java/com/gmei/data/gateway/server/utils/ProperUtils.java
View file @
c24450ea
...
...
@@ -32,9 +32,9 @@ public class ProperUtils {
Properties
properties
=
new
Properties
();
try
{
//InputStream inputStream = ProperUtils.class.getClassLoader().getResourceAsStream(path);
InputStream
inputStream
=
new
BufferedInputStream
(
new
FileInputStream
(
path
)
);
properties
.
load
(
inputStream
);
inputStream
.
close
();
InputStream
Reader
reader
=
new
InputStreamReader
(
new
FileInputStream
(
path
),
"UTF-8"
);
properties
.
load
(
reader
);
reader
.
close
();
}
catch
(
FileNotFoundException
e
)
{
e
.
printStackTrace
();
}
catch
(
IOException
e
)
{
...
...
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