WEB开发网
开发学院WEB开发Jsp 一个JAVA写的背单词程序 阅读

一个JAVA写的背单词程序

 2008-01-05 09:36:42 来源:WEB开发网   
核心提示:俺看了一些java, 写个程序出来玩玩,由于界面是用Jbuilder生成的,一个JAVA写的背单词程序,可能代码比较乱,而且还没合起来

  俺看了一些java, 写个程序出来玩玩。由于界面是用Jbuilder生成的,可能代码比较乱,而且还没合起来。 目前版本是0.00001 /* * Word.java * * Created on 2004-9-26 * */ package com.henry.vocabulary; import java.util.*; import java.text.*; public class word { PRivate static final SimpleDateFormat format = new SimpleDateFormat( "yyyy-M-dd hh:mm:ss"); private static final int[] memoryCurve = { 1, 2, 4, 8, 12, 20, 36, 54, 87, 160, 360 }; // Every "tomorrow" starts from 5AM, not from middle night. private static final int hourAdjust = -5; static Calendar today = Calendar.getInstance(); { today.add(Calendar.HOUR, hourAdjust); today.set(Calendar.HOUR,12); today.set(Calendar.MINUTE,0); today.set(Calendar.SECOND,0); } private String _wordValue; Date _nextReviewTime; int _reviewTimes; int _forgetTimes; /** * @param _wordValue The _wordValue to set. */ public void setwordValue(String _wordValue) { this._wordValue = _wordValue; } /** * @return Returns the _wordValue. */ public String getwordValue() { return _wordValue; } public word(String wordValue, String nextReviewTime, int reviewTimes, int forgetTimes) { try { setwordValue(wordValue); _nextReviewTime = format.parse(nextReviewTime); _reviewTimes = reviewTimes; _forgetTimes = forgetTimes; } catch (ParseException pe) { System.out.println("The input is not a date!"); throw new RuntimeException(pe); } } public word(String strword) { try { String[] values = strword.split(","); setwordValue(values[0]); _nextReviewTime = format.parse(values[1]); _reviewTimes = Integer.parseInt(values[2].trim()); if(values.length == 4) { // for compatible to the old version _forgetTimes = Integer.parseInt(values[3]); } else { _forgetTimes = 0; } } catch (ParseException pe) { System.out.println("The input is not a date!"); throw new RuntimeException(pe); } } public void forget() { _nextReviewTime = today.getTime(); _reviewTimes = 0; _forgetTimes++; } public void remember() { Calendar nextTime = (Calendar) today.clone(); nextTime.add(Calendar.DATE, memoryCurve[_reviewTimes]); _nextReviewTime = nextTime.getTime(); _reviewTimes++; } public String toString() { final SimpleDateFormat format2 = new SimpleDateFormat( "yyyy-M-dd hh:mm:ss"); String s = getwordValue() + "," + format2.format(_nextReviewTime) + "," + _reviewTimes + "," + _forgetTimes; return s; } /** * Judge if this word need to be reviewed today. * Comment for isNeedReview */ public boolean isNeedReview() { if(this._nextReviewTime.after(today.getTime())) { return false; } return true; } public static void main(String[] args) { word w = new word("test", "2004-8-30", 2, 3); word w1 = new word("test,2004-8-30,2,3"); System.out.println(w); w.remember(); System.out.println(w); w.forget(); System.out.println(w); System.out.println(w1); w1.remember(); System.out.println(w1); w1.forget(); System.out.println(w1); } } /* * wordsReview.java * * Created on 2004-9-26 * */ package com.henry.vocabulary; import java.util.*; import java.io.*; /** * @author Henry * */ public class wordsReview { List wordList = new ArrayList(); List wordNeedReviewList = new ArrayList(); word currentword; /** * @param fileName */ public void readFromFile(String fileName){ try{ StringBuffer sb = new StringBuffer(); BufferedReader br = new BufferedReader(new FileReader(fileName)); String s; while ((s = br.readLine()) != null) { this.currentword = new word(s); this.wordList.add(this.currentword); if(this.currentword.isNeedReview()){ this.wordNeedReviewList.add(this.currentword); } } this.currentword = null; } catch (FileNotFoundException e) { System.out.println(e); System.out.println(e.getStackTrace()); } catch (IOException ioe) { System.out.println(ioe); System.out.println(ioe.getStackTrace()); } } /** * @param fileName */ public void saveToFile(String fileName){ } /** * Get a word, which needs to be reviewed. * @return */ public String getword(){ if(this.wordNeedReviewList.isEmpty()){ return null; } Random random = new Random(); int ramdonIndex = random.nextInt() % this.wordNeedReviewList.size(); currentword = (word)this.wordNeedReviewList.get(ramdonIndex); return currentword.getwordValue(); } public void saveword(boolean isForget){ if(this.currentword == null){ System.out.println("Should not come here!"); System.out.println("When you call saveword to save the word, "); System.out.println(" you should get the word first."); return; } if(isForget) { this.currentword.forget(); } else { this.currentword.remember(); this.wordNeedReviewList.remove(currentword); } } public static void main(String[] args) { wordsReview wr = new wordsReview(); wr.readFromFile("HenryPan.txt"); String s = wr.getword(); wr.saveword(false); } } // MainFrame.java package app2; import java.awt.*; import java.awt.event.*; import javax.swing.*; /** *

Tags:一个 JAVA 单词

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接