Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package adminservlets_Json; import classes.AdminClass_CurrentState; import classes.AdminClass_NavbarTools; import classes.AdminClass_Overviewstats; import com.google.gson.Gson; import com.google.gson.JsonObject; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; /** * * @author SithuDewmi */ public class DataCountsJson extends HttpServlet { /** * Processes requests for both HTTP <code>GET</code> and <code>POST</code> * methods. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.sendError(HttpServletResponse.SC_NOT_FOUND); } // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> /** * Handles the HTTP <code>GET</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { processRequest(request, response); } /** * Handles the HTTP <code>POST</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { AdminClass_NavbarTools an = new AdminClass_NavbarTools(); AdminClass_Overviewstats ao = new AdminClass_Overviewstats(); AdminClass_CurrentState ac = new AdminClass_CurrentState(); ac.updateState(); String messageCount = String.valueOf(an.messageCount()); if ("0".equals(messageCount)) { messageCount = ""; } String ads = ao.reviewAdsCount(); if ("0".equals(ads)) { ads = ""; } String reports = ao.reportCount(); if ("0".equals(reports)) { reports = ""; } PrintWriter out = response.getWriter(); Gson gson = new Gson(); JsonObject myObj = new JsonObject(); myObj.addProperty("messageCount", messageCount); myObj.addProperty("ads", ads); myObj.addProperty("reports", reports); myObj.addProperty("topads", "N/A"); out.write(myObj.toString()); out.close(); } /** * Returns a short description of the servlet. * * @return a String containing servlet description */ @Override public String getServletInfo() { return "Short description"; }// </editor-fold> }