/************ CardHandler.java ************/ import java.io.*; import java.util.Formatter; public class CardHandler { protected String Name; protected double Value; protected String Type; protected String LastAction; File cardFile; public boolean openFromPath(String filename) { cardFile = new File(filename); if (!cardFile.exists()) { return false; } try { FileReader input = new FileReader(filename); BufferedReader bufRead = new BufferedReader(input); //String line = getClass().getName(); // String that holds current file line String Line[] = new String[4]; for (int i=0; i