-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSolution.java
More file actions
127 lines (91 loc) · 4.26 KB
/
Solution.java
File metadata and controls
127 lines (91 loc) · 4.26 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//Judas then, having taken a detachment of soldiers and officers from the chief priests and the Pharisees, came there with lanterns, torches, and weapons. (John 18:3)
---------------------------------------------------TxtInputStream.java--------------------------------------------------------------
package com.javarush.task.task18.task1814;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.channels.FileChannel;
/*
UnsupportedFileName
*/
public class TxtInputStream extends FileInputStream {
FileInputStream component;
public TxtInputStream(String fileName) throws UnsupportedFileNameException, IOException {
super(fileName);
if (fileName.endsWith(".txt"))
this.component = new FileInputStream(fileName);
else {
super.close();
throw new UnsupportedFileNameException();
}
}
@Override
public int read() throws IOException {
return this.component.read();
}
@Override
public int read(byte[] b) throws IOException {
return this.component.read(b);
}
@Override
public int read(byte[] b, int off, int len) throws IOException {
return this.component.read(b, off, len);
}
@Override
public long skip(long n) throws IOException {
return this.component.skip(n);
}
@Override
public int available() throws IOException {
return this.component.available();
}
@Override
public void close() throws IOException {
super.close();
this.component.close();
}
@Override
public FileChannel getChannel() {
return this.component.getChannel();
}
public static void main(String[] args) {
}
}
------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------UnsupportedFileNameException.java------------------------------------------------
package com.javarush.task.task18.task1814;
public class UnsupportedFileNameException extends Exception {
}
------------------------------------------------------------------------------------------------------------------------------------
/*
UnsupportedFileName
Измени класс TxtInputStream так, чтобы он работал только с txt-файлами (*.txt).
Например, first.txt или name.1.part3.txt.
Если передан не txt-файл, например, file.txt.exe, то конструктор должен выбрасывать исключение UnsupportedFileNameException.
Подумай, что еще нужно сделать, в случае выброшенного исключения.
Требования:
1. Класс TxtInputStream должен наследоваться от класса FileInputStream.
2. Если в конструктор передан txt-файл, TxtInputStream должен вести себя, как обычный FileInputStream.
3. Если в конструктор передан не txt-файл, должно быть выброшено исключение UnsupportedFileNameException.
4. В случае выброшенного исключения, так же должен быть вызван super.close().
---------------------------------------------------TxtInputStream.java--------------------------------------------------------------
package com.javarush.task.task18.task1814;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
*
UnsupportedFileName
*
public class TxtInputStream extends FileInputStream {
public TxtInputStream(String fileName) {
}
public static void main(String[] args) {
}
}
------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------UnsupportedFileNameException.java------------------------------------------------
package com.javarush.task.task18.task1814;
public class UnsupportedFileNameException extends Exception {
}
------------------------------------------------------------------------------------------------------------------------------------
*/