SuperVCD管理系统 完整代码,带各种注释,可以拿这个项目入门。
/////////////////////////////////////////////////////// /** * 数据文件名 */ protected static final String FILE_NAME = "music.db"; /** * 纪录的分割符 */ protected static final String RECORD_SEPARATOR = "----------"; /** * 默认构造方法 * */ public MusicDataAccessor() { load(); } /** * 读取数据的方法 */ public void load() { dataTable = new HashMap(); ArrayList musicArrayList = null; StringTokenizer st = null; MusicRecording myRecording; String line = ""; String artist, title; String category, imageName; int numberOfTracks; int basePrice; double price; Track[] trackList; try { log("读取文件: " + FILE_NAME + "...");