Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
idatt1002_2023_9
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Kluge Svendsrud
idatt1002_2023_9
Commits
0d237107
Commit
0d237107
authored
2 years ago
by
Andreas
Browse files
Options
Downloads
Patches
Plain Diff
Made readExpenseRegisterFromFile method
parent
d2d9cd79
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!9
Added FileHandling class for ItemRegister objects, and reworked ItemRegister with new subclasses
,
!8
Remade ItemRegister class and made FileHandling for ItemRegister-objects with tests
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/no/ntnu/idatt1002/demo/data/Economics/FileHandling.java
+32
-9
32 additions, 9 deletions
...a/no/ntnu/idatt1002/demo/data/Economics/FileHandling.java
with
32 additions
and
9 deletions
src/main/java/no/ntnu/idatt1002/demo/data/Economics/FileHandling.java
+
32
−
9
View file @
0d237107
...
...
@@ -28,19 +28,15 @@ public class FileHandling {
public
List
<
Income
>
readIncomeRegisterFromFile
(
String
fileTitle
)
throws
IOException
{
ArrayList
<
Income
>
incomeRegister
=
new
ArrayList
<>();
String
description
=
""
;
double
amount
=
0
;
boolean
reoccuring
;
String
date
=
""
;
IncomeCategory
incomeCategory
;
try
(
BufferedReader
br
=
new
BufferedReader
(
new
FileReader
(
"src/main/resources/"
+
fileTitle
+
".itemRegister"
)))
{
String
line
;
while
((
line
=
br
.
readLine
())
!=
null
)
{
if
(!
line
.
isEmpty
())
{
date
=
line
;
description
=
br
.
readLine
();
amount
=
Double
.
parseDouble
(
br
.
readLine
());
reoccuring
=
br
.
readLine
().
equals
(
"Reoccurring"
);
String
date
=
line
;
String
description
=
br
.
readLine
();
double
amount
=
Double
.
parseDouble
(
br
.
readLine
());
boolean
reoccuring
=
br
.
readLine
().
equals
(
"Reoccurring"
);
IncomeCategory
incomeCategory
;
line
=
br
.
readLine
();
if
(
line
.
equals
(
"SALARY"
)
||
line
.
equals
(
"STUDENT_LOAN"
)
||
line
.
equals
(
"GIFT"
))
{
if
(
line
.
equals
(
"SALARY"
))
{
...
...
@@ -57,4 +53,31 @@ public class FileHandling {
}
return
incomeRegister
;
}
public
List
<
Expense
>
readExpenseRegisterFromFile
(
String
fileTitle
)
throws
IOException
{
ArrayList
<
Expense
>
expenseRegister
=
new
ArrayList
<>();
try
(
BufferedReader
br
=
new
BufferedReader
(
new
FileReader
(
"src/main/resources/"
+
fileTitle
+
".itemRegister"
)))
{
String
line
;
while
((
line
=
br
.
readLine
())
!=
null
)
{
if
(!
line
.
isEmpty
())
{
String
date
=
line
;
String
description
=
br
.
readLine
();
double
amount
=
Double
.
parseDouble
(
br
.
readLine
());
boolean
reoccuring
=
br
.
readLine
().
equals
(
"Reoccurring"
);
ExpenseCategory
expenseCategory
;
line
=
br
.
readLine
();
if
(
line
.
equals
(
"CLOTHES"
)
||
line
.
equals
(
"FOOD"
)
||
line
.
equals
(
"BOOKS"
)
||
line
.
equals
(
"OTHER"
))
{
expenseCategory
=
switch
(
line
)
{
case
"CLOTHES"
->
ExpenseCategory
.
CLOTHES
;
case
"FOOD"
->
ExpenseCategory
.
FOOD
;
case
"BOOKS"
->
ExpenseCategory
.
BOOKS
;
default
->
ExpenseCategory
.
OTHER
;
};
expenseRegister
.
add
(
new
Expense
(
description
,
amount
,
reoccuring
,
expenseCategory
,
date
));
}
}
}
}
return
expenseRegister
;
}
}
\ No newline at end of file
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