Skip to content

Instantly share code, notes, and snippets.

View kirill-vlasov's full-sized avatar
🏠
Working from home

Kirill Vlasov kirill-vlasov

🏠
Working from home
  • QuickResto
View GitHub Profile
@kirill-vlasov
kirill-vlasov / quiz.java
Last active January 15, 2021 08:30
quiz.java
public class Parser {
private File file;
public synchronized void setFile(File f) {
file = f;
}
public synchronized File getFile() {
return file;
}
public String getContent() throws IOException {
InputStream i = new FileInputStream(file);