91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java制作投票系統代碼

發布時間:2020-06-04 16:27:09 來源:網絡 閱讀:448 作者:Leah 欄目:編程語言

這篇文章主要為大家詳細介紹了Java制作投票系統,文中示例代碼介紹的非常詳細,零基礎也能參考此文章,感興趣的小伙伴們可以參考一下。

代碼展示:

package com.tarena.wgh.servlet;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class PollServlet extends HttpServlet {


/**

* The doPost method of the servlet. <br> * * This method is called when a form has its tag value method equals to post. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doPost(HttpServletRequest request, HttpServletResponse response)        throws ServletException, IOException {    request.setCharacterEncoding("GBK");    //設置請求的編碼方式    String item=request.getParameter("item");   //獲取投票項    ServletContext servletContext=request.getSession().getServletContext(); //獲取ServletContext對象該對象在application范圍內有效    Map map=null;    if(servletContext.getAttribute("pollResult")!=null){        map=(Map)servletContext.getAttribute("pollResult"); //獲取投票結果        map.put(item,Integer.parseInt(map.get(item).toString())+1); //將當前的投票項加1    }else{      //初始化一個保存投票信息的Map集合,并將選定投票項的投票數設置為1,其他為0        String[] arr={"基礎教程類","實例集錦類","經驗技巧類","速查手冊類","案例剖析類"};        map=new HashMap();        for(int i=0;i<arr.length;i++){            if(item.equals(arr[i])){    //判斷是否為選定的投票項                map.put(arr[i], 1);            }else{                map.put(arr[i], 0);            }        }    }    servletContext.setAttribute("pollResult", map); //保存投票結果到ServletContext對象中    response.setCharacterEncoding("GBK");       //設置響應的編碼方式,如果不設置彈出的對話框中的文字將亂碼    PrintWriter out=response.getWriter();    out.println("<script>alert('投票成功!');window.location.href='showResult.jsp';</script>"); }}

關于Java制作投票系統就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

维西| 石门县| 蓝山县| 罗甸县| 蕲春县| 九江县| 尼玛县| 乌审旗| 封开县| 瓮安县| 娱乐| 山东| 岳西县| 砀山县| 济源市| 丁青县| 富源县| 拉孜县| 徐闻县| 麻城市| 周口市| 宜昌市| 永康市| 怀仁县| 腾冲县| 大安市| 黄冈市| 克拉玛依市| 巫山县| 拜泉县| 双柏县| 苏州市| 湾仔区| 和林格尔县| 祥云县| 曲沃县| 潢川县| 喀喇| 苏尼特左旗| 建始县| 景洪市|