zoukankan      html  css  js  c++  java
  • 进度日报22

    系统可按照限定的组合指标条件,对相关技术需求条数根据机构属性、科技活动类型、技术需求解决方式字段中的任何一个进行统计、排序、对比,生成统计图表。

    protected void tongji(HttpServletRequest req,HttpServletResponse resp)throws ServletException,IOException
        {
            req.setCharacterEncoding("utf-8");
            
            Tongjibean tongjibean=new Xuqiuservice().tongji();
            tongjibean.setWeishenhe1(tongjibean.jiussuan(tongjibean.getWeishenhe(), tongjibean.getZong()));
            tongjibean.setShenhe1(tongjibean.jiussuan(tongjibean.getShenhe(), tongjibean.getZong()));
            tongjibean.setTongguo1(tongjibean.jiussuan(tongjibean.getTongguo(), tongjibean.getZong()));
            tongjibean.setTuihui1(tongjibean.jiussuan(tongjibean.getTuihui(), tongjibean.getZong()));
            req.setAttribute("tongjibean", tongjibean);
            req.getRequestDispatcher("/jquery-css3-vote-bar-150326231418/NewFile1.jsp").forward(req, resp);
        }
    public Tongjibean tongji()
        {
            Session session = HibernateUtils.getCurrentSession();
            Transaction tr = session.beginTransaction();
            Tongjibean tongjibean=null;
            try
            {
                tongjibean=new Xuqiudao().tongji();
                tr.commit();
                
            }
            catch (Exception e) {
                e.printStackTrace();
                tr.rollback();
            }
            return tongjibean;
        }
  • 相关阅读:
    leetcode 买卖股票的最佳时机3
    leetcode 买卖股票的最佳时机Ⅱ
    leetcode 最长有效括号
    C++中的%lld和%I64d区别
    Ural 1095 Nikifor 3 思维+同余性质的利用
    博弈基础
    ural 1091. Tmutarakan Exams
    容斥原理
    一些易错的地方
    codeforces911D Inversion Counting 求逆序数+小trick
  • 原文地址:https://www.cnblogs.com/1234yyf/p/14197046.html
Copyright © 2011-2022 走看看