- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.java
More file actions
Latest commit
17 lines (14 loc) · 589 Bytes
/
Copy pathMain.java
File metadata and controls
17 lines (14 loc) · 589 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
publicclassMain
{
publicstaticvoidmain(String[] args) throwsException {
ImdbReaderImpliri = newImdbReaderImpl();
ImdbParserip = newImdbParser(iri);
// ip.parseMovies("/path/to/file/movies.list.gz");
// this parses actors and actresses
ip.parseActors("/path/to/file/actors.list.gz", "/path/to/file/actresses.list.gz");
// ip.parseMovies("/path/to/file/movies.list.gz");
// iri.writeMoviesXML("/path/to/file/movies.xml");
// iri.writeActorsXML("/path/to/file/actors.xml");
iri.writeActressesXML("/path/to/file/actresses.xml");
}
}