- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
import java.io.*;
class devnull
{
public static void main(String[] args)
{
if( args.length != 2 ) {
println("Использование: java devnull [файл] [байты]");
return;
}
int bytes;
try {
bytes = Integer.parseInt(args[1]);
}
catch(NumberFormatException e) {
println("Ошибка: "+e);
return;
}
if(bytes > 1000000000) {
println("Размер слишком большой!");
return;
}
else if(bytes < 1) {
println("Размер меньше единицы!");
return;
}
try(FileInputStream f = new FileInputStream("/dev/null");
FileOutputStream fout = new FileOutputStream(args[0]) ) {
int c;
for(int i=0; i<bytes; i++)
{
println("Пишу байт "+i+"...");
c = f.read();
fout.write(c);
}
}
catch(IOException e) {
println("Ошибка: "+e);
}
println(bytes+" байт успешно записаны в файл!");
}
static void print(String text)
{
System.out.print(text);
}
static void println(String text)
{
System.out.println(text);
}
}
inho 04.09.2017 19:23 # −5
inho 05.09.2017 21:06 # −5