forked from pr2-lecture/uebungen
18 lines
368 B
Java
18 lines
368 B
Java
package pr2.io.datainputoutput_2;
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
|
|
public class DateReader {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
// TODO: Implementieren
|
|
}
|
|
}
|