package com.javarush.test.level20.lesson02.task01;
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/* Читаем и пишем в файл: Human
Реализуйте логику записи в файл и чтения из файла для класса Human
Поле name в классе Human не может быть пустым
В файле your_file_name.tmp может быть несколько объектов Human
Метод main реализован только для вас и не участвует в тестировании
*/
public class Solution {
public static void main(String[] args) {
//you can find your_file_name.tmp in your TMP directory or fix outputStream/inputStream according to your real file location
//вы можете найти your_file_name.tmp в папке TMP или исправьте outputStream/inputStream в соответствии с путем к вашему реальному файлу
try {
File your_file_name = File.createTempFile("your_file_name", null);
OutputStream outputStream = new FileOutputStream(your_file_name);
InputStream inputStream = new FileInputStream(your_file_name);
Human ivanov = new Human("Ivanov", new Asset("home"), new Asset("car"));
ivanov.save(outputStream);
outputStream.flush();
Human somePerson = new Human();
somePerson.load(inputStream);
//check here that ivanov equals to somePerson - проверьте тут, что ivanov и somePerson равны
String isEqual = (somePerson.equals(ivanov)) ? "is equal" : "is not equal";
System.out.println(isEqual);
inputStream.close();
} catch (IOException e) {
//e.printStackTrace();
System.out.println("Oops, something wrong with my file");
} catch (Exception e) {
//e.printStackTrace();
System.out.println("Oops, something wrong with save/load method");
}
}
public static class Human {
public String name;
public List<Asset> assets = new ArrayList<>();
public Human() {
}
public Human(String name, Asset... assets) {
this.name = name;
if (assets != null) {
this.assets.addAll(Arrays.asList(assets));
}
}
public void save(OutputStream outputStream) throws Exception {
PrintWriter pw = new PrintWriter(outputStream);
pw.println(name);
pw.println(assets.size());
for (Asset as : assets)
{
pw.println(as.getName());
pw.println(as.getPrice());
}
pw.flush();
}
public void load(InputStream inputStream) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
name = br.readLine();
int asSize = Integer.parseInt(br.readLine());
for (int i = 0; i < asSize; i++)
{
String asName = br.readLine();
String asPrice = br.readLine();
assets.add(new Asset(asName));
assets.get(assets.size()-1).setPrice(Double.parseDouble(asPrice));
}
br.close();
}
}
}
package com.javarush.test.level20.lesson02.task01;
public class Asset {
public Asset(String name) {
this.name = name;
}
private String name;
private double price;
public String getName() {
return name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
}
Leave A Comment