-
大小: 7KB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2021-06-11
- 語(yǔ)言: Java
- 標(biāo)簽:
資源簡(jiǎn)介
一個(gè)簡(jiǎn)單的web jsp投票系統(tǒng)(適合初學(xué)者) 一個(gè)簡(jiǎn)單的web jsp投票系統(tǒng)(適合初學(xué)者) 一個(gè)簡(jiǎn)單的web jsp投票系統(tǒng)(適合初學(xué)者)

代碼片段和文件信息
package?com.bu3g.test;
import?java.io.BufferedReader;
import?java.io.FileNotFoundException;
import?java.io.FileOutputStream;
import?java.io.FileReader;
import?java.io.IOException;
import?java.io.PrintWriter;
public?class?Counter?{
private?String?currentRecord?=?null;//文本變量
private?BufferedReader?file;//讀取文件數(shù)據(jù)的緩存流
private?String?path;//文件完整路徑名
//readFile方法用來(lái)讀取文件filePath中的數(shù)據(jù)并返回所需求的投票數(shù)的數(shù)組
public?int[]?readFile(String?filePath)?throws?FileNotFoundException?{
path?=?filePath;
file?=?new?BufferedReader(new?FileReader(path));//創(chuàng)建新的BufferedReader對(duì)象
int?returnStr[]=new?int[5];
try?{
currentRecord?=?file.readLine();//讀取一行數(shù)據(jù)并保存到currentRecord文本變量中
}?catch?(IOException?e)?{
System.out.println(“讀文件錯(cuò)誤.“);
}
if?(currentRecord?!=?null)?{
String[]?str?=?currentRecord.split(“#“);
for?(int?i?=?0;?i? returnStr[i]?=?Integer.parseInt(str[i]);
}
return?returnStr;
}
//writeFile方法用來(lái)將數(shù)組counter寫入到文本文件filePath中
public?void?writeFile(String?filePath?int[]?counter)
throws?FileNotFoundException?{
path?=?filePath;
String?writeStr?=?““;
for?(int?i?=?0;?i? if?(i?!=?counter.length?-?1)
writeStr?+=?counter[i]?+?“#“;
else
writeStr?+=?counter[i];
}
try?{
//創(chuàng)建PrintWriter對(duì)象用于寫入數(shù)據(jù)到文件中
PrintWriter?pw?=?new?PrintWriter(new?FileOutputStream(filePath));
pw.println(writeStr);//用文本格式寫入writeStr
pw.close();//關(guān)閉流
}?catch?(IOException?e)?{
System.out.println(“寫文件錯(cuò)誤“?+?e.getMessage());
}
}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????340??2010-05-21?16:17??vote\.classpath
?????文件????????285??2010-05-31?20:53??vote\.myme
?????文件???????1222??2010-05-21?16:29??vote\.project
?????文件?????????11??2010-05-21?16:54??vote\WebRoot\count.txt
?????文件????????857??2010-05-21?17:03??vote\WebRoot\do_vote.jsp
?????文件???????3918??2010-05-21?16:59??vote\WebRoot\show.jsp
?????文件???????2350??2010-05-21?16:26??vote\WebRoot\vote.jsp
?????文件????????284??2010-05-21?16:17??vote\WebRoot\WEB-INF\web.xm
?????文件???????2143??2010-05-31?20:53??vote\WebRoot\WEB-INF\classes\com\bu3g\test\Counter.class
?????文件?????????39??2010-05-21?16:17??vote\WebRoot\me
?????文件????????843??2010-05-31?23:07??vote\WebRoot\images\1.gif
?????文件????????586??2010-05-21?16:18??vote\WebRoot\css\st
?????文件???????1675??2010-05-21?17:04??vote\src\com\bu3g\test\Counter.java
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF\classes\com\bu3g\test
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF\classes\com\bu3g
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF\classes\com
?????目錄??????????0??2010-08-26?16:24??vote\src\com\bu3g\test
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF\lib
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF\classes
?????目錄??????????0??2010-08-26?16:24??vote\src\com\bu3g
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\WEB-INF
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\me
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\images
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot\css
?????目錄??????????0??2010-08-26?16:24??vote\src\com
?????目錄??????????0??2010-08-26?16:24??vote\WebRoot
?????目錄??????????0??2010-08-26?16:24??vote\src
?????目錄??????????0??2010-08-26?16:24??vote\.myeclipse
?????目錄??????????0??2010-08-26?16:24??vote
-----------?---------??----------?-----??----
............此處省略2個(gè)文件信息
評(píng)論
共有 條評(píng)論