主頁(yè) > 知識(shí)庫(kù) > jsp網(wǎng)頁(yè)計(jì)數(shù)器實(shí)現(xiàn)示例

jsp網(wǎng)頁(yè)計(jì)數(shù)器實(shí)現(xiàn)示例

熱門(mén)標(biāo)簽:四川保險(xiǎn)智能外呼系統(tǒng)商家 電銷(xiāo)機(jī)器人是有一些什么技術(shù) 北票市地圖標(biāo)注 電銷(xiāo)機(jī)器人好賣(mài)么 杭州ai語(yǔ)音電銷(xiāo)機(jī)器人功能 商洛電銷(xiāo) 杭州語(yǔ)音電銷(xiāo)機(jī)器人軟件 地圖標(biāo)注線(xiàn)上教程 高德地圖標(biāo)注樣式
復(fù)制代碼 代碼如下:

//過(guò)濾器類(lèi)
public class EcondingFilter implements Filter {
private String charset = null;
private ServletContext context = null;
private String path = "";
/**
* 在銷(xiāo)毀前將數(shù)據(jù)存入本地文件中
*/
public void destroy() {
//獲取servleContext中的屬性的那個(gè)值
String nums = (String) context.getAttribute("nums");
//創(chuàng)建寫(xiě)入流
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter(path);
bw = new BufferedWriter(fw);
bw.write(nums);
} catch (Exception e) {
e.printStackTrace();
} finally {

try {
if (bw != null) {
bw.close();
}
if (fw != null) {
fw.close();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
System.out.println("filter銷(xiāo)毀");
}

復(fù)制代碼 代碼如下:

public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
// TODO Auto-generated method stub
System.out.println("doFilter前");
String path = ((HttpServletRequest)request).getServletPath();//獲取每次訪(fǎng)問(wèn)的action的相對(duì)路徑
img alt="" src="http://img.blog.csdn.net/20130728233435953?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQva2tyZ3diag==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center">img alt="" src="http://img.blog.csdn.net/20130728233445625?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQva2tyZ3diag==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center"> //判斷路徑,如果是登陸的那個(gè)action,就讓保存的context里面的那個(gè)屬性加1
if(path.endsWith("/login.action")){
context.setAttribute("nums",Integer.parseInt(context.getAttribute("nums").toString())+1+"");
}
request.setCharacterEncoding(charset);
response.setCharacterEncoding(charset);
chain.doFilter(request, response);
System.out.println("doFilter后");

}

復(fù)制代碼 代碼如下:

public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
System.out.println("filter初始化");
//獲取編碼格式
charset = filterConfig.getInitParameter("encoding");
//獲取servletContext
context = filterConfig.getServletContext();
System.out.println(charset);

path = context.getRealPath("");
File file = new File("D:\\text.txt");
if (!file.exists()) {//判斷文件是否存在
// 如果文件不存在,就創(chuàng)建一個(gè)文件,保存在D盤(pán)中
file = new File("d:\\text.txt");
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter(file);
bw = new BufferedWriter(fw);
bw.write(0 + "");// 寫(xiě)入初始化數(shù)據(jù)0
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (bw != null) {
bw.close();
}
if (fw != null) {
fw.close();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();

}
}
}
//當(dāng)每次tomcat啟動(dòng)服務(wù)時(shí),進(jìn)行讀取創(chuàng)建的那個(gè)文件
path = "d:\\text.txt";
// 從本地讀取訪(fǎng)問(wèn)的人數(shù)的文件
FileReader fr = null;
BufferedReader bf = null;
String nums = "";
try {
fr = new FileReader(path);
bf = new BufferedReader(fr);
nums = bf.readLine();
System.out.println(nums);
} catch (Exception e) {
e.printStackTrace();
} finally {

try {
if (bf != null) {
bf.close();
}
if (fr != null) {
fr.close();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//將獲得到的數(shù)據(jù)保存在servletContext中
context.setAttribute("nums", nums);
}

}

用過(guò)濾器方便的一點(diǎn),不需要我們每次手動(dòng)去調(diào)用,當(dāng)web服務(wù)啟動(dòng)時(shí)候,自動(dòng)會(huì)引用。首先說(shuō)下,我寫(xiě)到init方法的依據(jù)是,每次web服務(wù)啟動(dòng)會(huì)調(diào)用一次init方法,當(dāng)關(guān)閉服務(wù)的時(shí)候會(huì)調(diào)用一次destory方法,將計(jì)數(shù)的那個(gè)數(shù)據(jù)文件,這個(gè)方法寫(xiě)到init方法和destory方法,這樣可以減少每次的不斷的讀取服務(wù)器和讀取寫(xiě)入文件的次數(shù),當(dāng)我們每登陸一次,就讓servletContext中的那個(gè)attr加1,從而實(shí)現(xiàn)當(dāng)關(guān)閉服務(wù)的時(shí)候,把文件保存在磁盤(pán)中。下次從磁盤(pán)中讀取。
您可能感興趣的文章:
  • JavaScript實(shí)現(xiàn)計(jì)數(shù)器基礎(chǔ)方法
  • 使用JavaScript制作一個(gè)簡(jiǎn)單的計(jì)數(shù)器的方法
  • 一個(gè)簡(jiǎn)單的網(wǎng)站訪(fǎng)問(wèn)JS計(jì)數(shù)器 刷新1次加1次訪(fǎng)問(wèn)
  • javascript下計(jì)數(shù)器每秒自動(dòng)加1
  • 用JAVASCRIPT幫我寫(xiě)個(gè)計(jì)數(shù)器
  • js計(jì)數(shù)器代碼
  • 原生JS實(shí)現(xiàn)非常好看的計(jì)數(shù)器

標(biāo)簽:紅河 宿州 云浮 西藏 貴州 江西 丹東 青島

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp網(wǎng)頁(yè)計(jì)數(shù)器實(shí)現(xiàn)示例》,本文關(guān)鍵詞  jsp,網(wǎng)頁(yè),計(jì)數(shù)器,實(shí)現(xiàn),示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp網(wǎng)頁(yè)計(jì)數(shù)器實(shí)現(xiàn)示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于jsp網(wǎng)頁(yè)計(jì)數(shù)器實(shí)現(xiàn)示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章