Installing JDK & Eclipse
Sun JDK downloads - Choose JDK 6 Update 16Eclipse downloads - Choose Eclipse IDE for Java Developers
For Assignment 1, you will construct a parser that reads key/value pairs from a text file formatted as follows:
Name="Biscuit" LatinName="Retrieverus_Aurum" Image="Biscuit.bmp" DNA="AIOCOICAIAIAOOCA"Today's example reads a simpler file line-by-line as key/value pairs for a HashMap.
Files
| biscuit.txt | Sample data file |
| FileParser.java | Example parser |
| cs2110_a1.jar | Assignment 1 JAR file |