FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-basics/java-programs/SortATextFile.java at master · Sethu1910/java-basics · GitHub
Sethu1910
/
java-basics
Public
forked from
learning-zone/java-basics
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java-basics
/
java-programs
/
SortATextFile.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (31 loc) · 933 Bytes
Breadcrumbs
java-basics
/
java-programs
/
SortATextFile.java
Copy path
File metadata and controls
37 lines (31 loc) · 933 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package
misc
;
import
java
.
io
.
BufferedReader
;
import
java
.
io
.
FileReader
;
import
java
.
io
.
FileWriter
;
import
java
.
io
.
PrintWriter
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
Collections
;
import
java
.
util
.
List
;
public
class
SortATextFile
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
String
inputfile
=
"input.txt"
;
String
outputfile
=
"output.txt"
;
FileReader
fileReader
=
new
FileReader
(
inputfile
);
BufferedReader
bufferReader
=
new
BufferedReader
(
fileReader
);
String
inputLine
;
List
<
String
>
lineList
=
new
ArrayList
<
String
>();
while
((
inputLine
=
bufferReader
.
readLine
()) !=
null
) {
lineList
.
add
(
inputLine
);
}
fileReader
.
close
();
Collections
.
sort
(
lineList
);
FileWriter
fileWriter
=
new
FileWriter
(
outputfile
);
PrintWriter
out
=
new
PrintWriter
(
fileWriter
);
for
(
String
outputLine
:
lineList
) {
out
.
println
(
outputLine
);
}
out
.
flush
();
out
.
close
();
fileWriter
.
close
();
}
}
Back
|
FazBrowse Home
|
New Git URL