`
lxz8157
  • 浏览: 36028 次
  • 来自: ...
最近访客 更多访客>>
社区版块
存档分类
最新评论

分页笔记

阅读更多
PageControlData.java
package application.common.util;

import java.io.Serializable;

@SuppressWarnings("serial")
public class PageControlData implements Serializable
{
    //默认页面尺寸
    private static final int DEFULT_PAGE_SIZE = 10;

    /**
     * 页面总数
     */
    private int              pageCount;

    /**
     * 当前页面序号
     */
    private int              currentPage;

    /**
     * 总记录条数
     */
    private int              resultCount;

    /**
     * 页面尺寸
     */
    private int              pageSize         = DEFULT_PAGE_SIZE;

    /**
     * 跳转到的页面序号
     */
    private int              changePageNumber;

    /**
     * 起始的记录序号
     */
    @SuppressWarnings("unused")
    private int              startRowNum;

    /**
     * 终了记录序号
     */
    @SuppressWarnings("unused")
    private int              endRowNum;

    /**
     * @roseuid 42F3107F02D9
     */
    public PageControlData()
    {

    }

    /**
     * Access method for the pageCount property.
     *
     * @return   the current value of the pageCount property
     */
    public int getPageCount()
    {
        //判断记录总数是否能整除页尺寸
        if (resultCount % pageSize == 0)
        {
            //整除则直接取整相除
            pageCount = (resultCount / pageSize);
        }
        else
        {
            //否则取整相除后加一
            pageCount = (resultCount / pageSize) + 1;
        }
        return pageCount;
    }

    /**
     * Sets the value of the pageCount property.
     *
     * @param aPageCount the new value of the pageCount property
     */
    public void setPageCount(int aPageCount)
    {
        pageCount = aPageCount;
    }

    /**
     * Access method for the currentPage property.
     *
     * @return   the current value of the currentPage property
     */
    public int getCurrentPage()
    {
        // 判断总记录数大于零且当前也是小于一的情况
        if (currentPage < 1 && resultCount > 0)
        {
            currentPage = 1;
        }
        //判断当前页序号是否溢出
        if (currentPage > getPageCount())
        {
            currentPage = pageCount;
        }
        return currentPage;
    }

    /**
     * Sets the value of the currentPage property.
     *
     * @param aCurrentPage the new value of the currentPage property
     */
    public void setCurrentPage(int aCurrentPage)
    {
        //设置当前页序号、小于零的情况忽略
        if (aCurrentPage >= 0)
        {
            currentPage = aCurrentPage;
        }
    }

    /**
     * Access method for the resultCount property.
     *
     * @return   the current value of the resultCount property
     */
    public int getResultCount()
    {
        return resultCount;
    }

    /**
     * Sets the value of the resultCount property.
     *
     * @param aResultCount the new value of the resultCount property
     */
    public void setResultCount(int aResultCount)
    {
        //设置总记录条数
        resultCount = aResultCount;
    }

    /**
     * Access method for the pageSize property.
     *
     * @return   the current value of the pageSize property
     */
    public int getPageSize()
    {
        return pageSize;
    }

    /**
     * Sets the value of the pageSize property.
     *
     * @param aPageSize the new value of the pageSize property
     */
    public void setPageSize(int aPageSize)
    {
        pageSize = aPageSize;

    }

    /**
     * Access method for the changePageNumber property.
     *
     * @return   the current value of the changePageNumber property
     */
    public int getChangePageNumber()
    {
        return changePageNumber;
    }

    /**
     * Sets the value of the changePageNumber property.
     *
     * @param aChangePageNumber the new value of the changePageNumber property
     */
    public void setChangePageNumber(int aChangePageNumber)
    {
        //设置跳转到的页面序号
        changePageNumber = aChangePageNumber;
        //设置当前页序号
        setCurrentPage(changePageNumber);
    }

    /**
     * Determines if the isFirstPage property is true.
     *
     * @return   <code>true<code> if the isFirstPage property is true
     */
    public boolean getIsFirstPage()
    {
        return currentPage <= 1 ? true : false;
    }

    /**
     * Determines if the isLastPage property is true.
     *
     * @return   <code>true<code> if the isLastPage property is true
     */
    public boolean getIsLastPage()
    {
        return pageCount <= currentPage ? true : false;
    }

    /**
     * Access method for the startRowNum property.
     *
     * @return   the current value of the startRowNum property
     */
    public int getStartRowNum()
    {
        //判断记录总数是否能整除页尺寸
        if (currentPage > getPageCount())
        {
            currentPage = pageCount;
        }
        return ((currentPage - 1) * pageSize > 0 ? (currentPage - 1) * pageSize : 0);
    }

    /**
     * Access method for the endRowNum property.
     *
     * @return   the current value of the endRowNum property
     */
    public int getEndRowNum()
    {
        //判断记录总数是否能整除页尺寸
        if (currentPage > getPageCount())
        {
            currentPage = pageCount;
        }
        //如果当前页小于一则结束序号为页面大小,否则按公式计算
        return (currentPage - 1) > 0 ? (currentPage - 1) * pageSize + pageSize : pageSize;
    }

    /**
     * Sets the value of the startRowNum property.
     *
     * @param aStartRowNum the new value of the startRowNum property
     */
    public void setStartRowNum(int aStartRowNum)
    {
        startRowNum = aStartRowNum;
    }

    /**
     * Sets the value of the endRowNum property.
     *
     * @param aEndRowNum the new value of the endRowNum property
     */
    public void setEndRowNum(int aEndRowNum)
    {
        endRowNum = aEndRowNum;
    }

    /**
     * 
     * 方法名称: init
     * 内容摘要: 初始化分页对象
     */
    public void init()
    {
        //初始化页面总数
        pageCount = 0;
        //初始化当前页面序号
        currentPage = 0;
        //初始化总记录条数
        resultCount = 0;
        //初始化页面尺寸
        pageSize = DEFULT_PAGE_SIZE;
    }
}



PageResultData.java
package application.common.util;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

@SuppressWarnings("serial")
public class PageResultData implements Serializable
{
    // 页面控制对象
    private PageControlData pageControlData = new PageControlData();

    // 当前也数据列表
    private List            pageList        = new ArrayList();

    // 分页条
    private String          pageBar         = "";

    public String getPageBar()
    {
        return pageBar;
    }

    public void setPageBar(String pageBar)
    {
        this.pageBar = pageBar;
    }

    /**
     * @return
     */
    public PageControlData getPageControlData()
    {
        return pageControlData;
    }

    /**
     * @return
     */
    public List getPageList()
    {
        return pageList;
    }

    /**
     * @param data
     */
    public void setPageControlData(PageControlData data)
    {
        pageControlData = data;
    }

    /**
     * @param list
     */
    public void setPageList(List list)
    {
        pageList = list;
    }

    /**
     * 方法名称: getScriptCode 内容摘要: 获得标签中的JavaScript语句
     * 
     * @return String JavaScript语句
     */
    public String getScriptCode(String formName, String formActionName, String formActionValue)
    {
        StringBuffer js = new StringBuffer();
        js.append("<Script language=\"javaScript\">\n");
        js.append("function goPage(thePage){\n");
        js.append("document." + formName);
        js.append(".elements(\"pageResult.pageControlData.changePageNumber\").value=thePage;\n");

        if (formActionValue != null)
        {
            js.append("document." + formName + ".elements(\"");
            if (formActionName != null)
            {
                js.append(formActionName);
            }
            else
            {
                js.append("formAction");
            }
            js.append("\").value=\"" + formActionValue + "\";\n");
        }
        js.append("document." + formName + ".submit();\n" + "}\n</script>\n");
        return js.toString();
    }

    /**
     * 方法名称: getPageCode 内容摘要: 获得页面中需要显示的代码的中文版
     * 
     * @param sourcePageControlData
     * @param funName
     *            String 标签中的JavaScript方法名称
     * @param hasFunctionName
     *            是否存在JavaScript方法名称
     * @return String 面中需要显示的代码
     */
    public String getPageCodeChinese(String formName, String formActionValue, String formActionName,
            PageControlData sourcePageControlData)
    {
        StringBuffer pageCode = new StringBuffer();
        pageCode.append(getScriptCode(formName,formActionName,formActionValue));
        pageCode.append("<input type=\"hidden\" name=\"").append("pageResult.pageControlData").append(
                ".resultCount\" value=\"").append(sourcePageControlData.getResultCount()).append("\">\n");
        // "<input type=\"hidden\" name=\""+pageDataName+".currentPage\"
        // value=\"-1\">\n"+
        pageCode.append("<table cellspacing=\"0\" class=\"pageno\">\n<tr class=\"tr_pagenumber\">\n");
        pageCode.append("<td>\n第").append(sourcePageControlData.getCurrentPage()).append("页/共").append(
                sourcePageControlData.getPageCount()).append("页");
        pageCode.append("&nbsp;&nbsp;共").append(sourcePageControlData.getResultCount()).append("条记录&nbsp;&nbsp;每页");
        pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(".pageSize\" ")
                .append("style=\"border-bottom-style: solid\" onchange=\"");

        if (formActionValue != null)
        {
            pageCode.append("document.").append(formName).append(".elements(\'");
            if (formActionName != null)
            {
                pageCode.append(formActionName);
            }
            else
            {
                pageCode.append("formAction");
            }
            pageCode.append("\').value = \'").append(formActionValue).append("\';\n");
        }
        // pageCode += "document." + name +
        // ".elements(\'"+pageDataName+".currentPage\').value=-1;\n";
        pageCode.append("document.").append(formName).append(".submit();\" ");
        if (0 == sourcePageControlData.getResultCount())
        {
            pageCode.append(" disabled=\"disabled\" ");
        }
        pageCode.append(">\n");
        // }
        pageCode.append("<option value=\"5\" ");
        if (sourcePageControlData.getPageSize() == 5)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">5</option>\n<option value=\"10\" ");
        if (sourcePageControlData.getPageSize() == 10)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">10</option>\n<option value=\"20\" ");
        if (sourcePageControlData.getPageSize() == 20)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">20</option>\n<option value=\"40\" ");
        if (sourcePageControlData.getPageSize() == 40)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">40</option>\n<option value=\"80\" ");
        if (sourcePageControlData.getPageSize() == 80)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">80</option>\n<option value=\"100\" ");
        if (sourcePageControlData.getPageSize() == 100)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">100</option>\n<option value=\"120\" ");
        if (sourcePageControlData.getPageSize() == 120)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">120</option>\n</select>\n行&nbsp;&nbsp;");
        if (!sourcePageControlData.getIsFirstPage())
        {
//            pageCode.append("<img src=\"../../images/table/firstPage.gif\" title=\"第一页\" style=\"cursor: hand;\" onclick=\"")
//                    .append("goPage").append("(1);\"> ").append("&nbsp;").append(
//                            "<img src=\"../../images/table/prevPage.gif\" title=\"上一页\" style=\"cursor: hand;\" onclick=\"")
//                    .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(");\"> ")
//                    .append("\n");
            pageCode.append("<a href=\"javascript:")
          .append("goPage").append("(1)\"; title=\"首页\" style=\"font-family:Webdings!important;\"> 9 </a> ").append("").append(
                  "<a href=\"javascript:")
          .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(")\";  title=\"上一页\" style=\"font-family:Webdings!important;\"> 7 </a> ")
          .append("\n");
        }
        else
        {
            pageCode.append("<font title=\"首页\" style=\"font-family:Webdings!important;\"> 9 </font>").append("").append(
                    "<font   title=\"上一页\" style=\"font-family:Webdings!important;\"> 7 </font>");
        }
            pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(
                ".changePageNumber\" ").append("style=\"border-bottom-style: solid\" onchange=\"").append("goPage")
                .append("(this.value);\" ");
        if (0 == sourcePageControlData.getResultCount())
        {
            pageCode.append(" disabled=\"disabled\" ");
        }        
        pageCode.append(">\n");
        // 页面选择下拉框
        // String optionString = "";
        for (int i = 0; i < sourcePageControlData.getPageCount(); i++)
        {
            pageCode.append("<option value=\"").append((i + 1)).append("\" ");
            if (sourcePageControlData.getCurrentPage() == i + 1)
            {
                pageCode.append("selected ");
            }
            pageCode.append(">").append((i + 1)).append("</option>\n");
        }
        // pageCode += optionString;
        pageCode.append("</select> \n ");
        if (!sourcePageControlData.getIsLastPage())
        {
            pageCode.append("<a href=\"javascript:")
                    .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() + 1)).append(")\"  title=\"下一页\" style=\"font-family:Webdings!important;\"> 8 </a> ")
                    .append("").append(
                            "<a href=\"javascript:")
                    .append("goPage").append("(").append((sourcePageControlData.getPageCount())).append(")\"  title=\"末页\" style=\"font-family:Webdings!important;\"> : </a>")
                    .append("\n");
        }
        else
        {
            pageCode.append("<font title=\"下一页\" style=\"font-family:Webdings!important;\" > 8 </font>").append("").append(
                    "<font title=\"末页\" style=\"font-family:Webdings!important;\" > : </font>\n");
        }

        pageCode.append("</td>\n</tr>\n</table>\n");
        return pageCode.toString();
    }
    
    /**
     * 方法名称: getPageCode 内容摘要: 获得页面中需要显示的代码的英文版
     * 
     * @param sourcePageControlData
     * @param funName
     *            String 标签中的JavaScript方法名称
     * @param hasFunctionName
     *            是否存在JavaScript方法名称
     * @return String 面中需要显示的代码
     */
    public String getPageCodeEnglish(String formName, String formActionValue, String formActionName,
            PageControlData sourcePageControlData)
    {
        StringBuffer pageCode = new StringBuffer();
        pageCode.append(getScriptCode(formName,formActionName,formActionValue));
        pageCode.append("<input type=\"hidden\" name=\"").append("pageResult.pageControlData").append(
                ".resultCount\" value=\"").append(sourcePageControlData.getResultCount()).append("\">\n");
        // "<input type=\"hidden\" name=\""+pageDataName+".currentPage\"
        // value=\"-1\">\n"+
        pageCode.append("<table cellspacing=\"0\" class=\"pageno\">\n<tr class=\"tr_pagenumber\">\n");
        pageCode.append("<td>\npage:").append(sourcePageControlData.getCurrentPage()).append("/total pages:").append(
                sourcePageControlData.getPageCount()).append("&nbsp;total records:");
        pageCode.append("&nbsp;").append(sourcePageControlData.getResultCount()).append("&nbsp;&nbsp;");
        pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(".pageSize\" ")
                .append("style=\"border-bottom-style: solid\" onchange=\"");

        if (formActionValue != null)
        {
            pageCode.append("document.").append(formName).append(".elements(\'");
            if (formActionName != null)
            {
                pageCode.append(formActionName);
            }
            else
            {
                pageCode.append("formAction");
            }
            pageCode.append("\').value = \'").append(formActionValue).append("\';\n");
        }
        // pageCode += "document." + name +
        // ".elements(\'"+pageDataName+".currentPage\').value=-1;\n";
        pageCode.append("document.").append(formName).append(".submit();\">\n");
        // }
        pageCode.append("<option value=\"5\" ");
        if (sourcePageControlData.getPageSize() == 5)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">5</option>\n<option value=\"10\" ");
        if (sourcePageControlData.getPageSize() == 10)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">10</option>\n<option value=\"20\" ");
        if (sourcePageControlData.getPageSize() == 20)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">20</option>\n<option value=\"40\" ");
        if (sourcePageControlData.getPageSize() == 40)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">40</option>\n<option value=\"80\" ");
        if (sourcePageControlData.getPageSize() == 80)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">80</option>\n<option value=\"100\" ");
        if (sourcePageControlData.getPageSize() == 100)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">100</option>\n<option value=\"120\" ");
        if (sourcePageControlData.getPageSize() == 120)
        {
            pageCode.append("selected ");
        }
        pageCode.append(">120</option>\n</select>\nrecords per page&nbsp;&nbsp;");
        if (!sourcePageControlData.getIsFirstPage())
        {
//            pageCode.append("<img src=\"../../images/table/firstPage.gif\" title=\"第一页\" style=\"cursor: hand;\" onclick=\"")
//                    .append("goPage").append("(1);\"> ").append("&nbsp;").append(
//                            "<img src=\"../../images/table/prevPage.gif\" title=\"上一页\" style=\"cursor: hand;\" onclick=\"")
//                    .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(");\"> ")
//                    .append("\n");
            pageCode.append("<a href=\"javascript:")
          .append("goPage").append("(1)\"; title=\"First\" style=\"font-family:Webdings!important;\"> 9 </a> ").append("&nbsp;").append(
                  "<a href=\"javascript:")
          .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(")\";  title=\"Previous\" style=\"font-family:Webdings!important;\"> 7 </a> ")
          .append("\n");
        }
        else
        {
            pageCode.append("<font title=\"First\" style=\"font-family:Webdings!important;\"> 9 </font>").append("&nbsp;").append(
                    "<font   title=\"Previous\" style=\"font-family:Webdings!important;\"> 7 </font>");
        }
            pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(
                ".changePageNumber\" ").append("style=\"border-bottom-style: solid\" onchange=\"").append("goPage")
                .append("(this.value);\">\n");
        // 页面选择下拉框
        // String optionString = "";
        for (int i = 0; i < sourcePageControlData.getPageCount(); i++)
        {
            pageCode.append("<option value=\"").append((i + 1)).append("\" ");
            if (sourcePageControlData.getCurrentPage() == i + 1)
            {
                pageCode.append("selected ");
            }
            pageCode.append(">").append((i + 1)).append("</option>\n");
        }
        // pageCode += optionString;
        pageCode.append("</select> \n ");
        if (!sourcePageControlData.getIsLastPage())
        {
            pageCode.append("<a href=\"javascript:")
                    .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() + 1)).append(")\"  title=\"Next\" style=\"font-family:Webdings!important;\"> 8 </a> ")
                    .append("&nbsp;").append(
                            "<a href=\"javascript:")
                    .append("goPage").append("(").append((sourcePageControlData.getPageCount())).append(")\"  title=\"Last\" style=\"font-family:Webdings!important;\"> : </a>")
                    .append("\n");
        }
        else
        {
            pageCode.append("<font title=\"Next\" style=\"font-family:Webdings!important;\" > 8 </font>").append("&nbsp;").append(
                    "<font title=\"Last\" style=\"font-family:Webdings!important;\" > : </font>\n");
        }

        pageCode.append("</td>\n</tr>\n</table>\n");
        return pageCode.toString();
    }
}


在Form中添加如下代码:
    //分页对象
    private PageResultData    pageResult   = new PageResultData();
  
   public PageResultData getPageResult()
    {
        return pageResult;
    }

    public void setPageResult(PageResultData pageResult)
    {
        this.pageResult = pageResult;
    }


在Action的方法中添加如下代码:
PageResultData pageResultData = (PageResultData) 
pageForm.getPageResult();

        ApplyApproveAuditingService.queryIApplyApproveAuditingByOrgId(map, pageResultData);

        String language = request.getLocale().getLanguage();
        pageResultData.getPageControlData().setResultCount(pageResultData.getPageControlData().getResultCount() - 1);
        pageResultData.setPageBar(this.getPageBarBefore(pageResultData, language));
request.setAttribute("auditingList", pageResultData.getPageList());
        //保存分页条
        request.setAttribute("pageBar", pageResultData.getPageBar());

    /**
     * 返回分页条
     * 
     * @return
     */
    private String getPageBarBefore(PageResultData pageResultData, String language)
    {
        String formName = "searchAuditingForm";
        String formAction = null;
        String formActionValue = null;
        if ("zh".equalsIgnoreCase(language))
        {
            return pageResultData.getPageCodeChinese(formName, formActionValue, formAction, pageResultData
                    .getPageControlData());
        }
        else
        {
            return pageResultData.getPageCodeEnglish(formName, formActionValue, formAction, pageResultData
                    .getPageControlData());
        }
    }


在dao中添加如下方法:
        //分页起始位置
        int startRow = pageResultData.getPageControlData().getStartRowNum();
        //分页结束位置
        int endRow = pageResultData.getPageControlData().getEndRowNum();

        pageResultData.setPageList(PandectList);
       //设置结果集总数
         pageResultData.getPageControlData().setResultCount(rs1.getInt(1));
分享到:
评论

相关推荐

    iOS版微信抢红包Tweak.zip小程序

    iOS版微信抢红包Tweak.zip小程序

    毕业设计&课设_篮球爱好者网站,含前后台管理功能及多种篮球相关内容展示.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    基于springboot社区停车信息管理系统.zip

    基于springboot社区停车信息管理系统.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    重磅,更新!!!上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM)(2000-2023年)

    ## 数据指标说明 全要素生产率(TFP)也可以称之为系统生产率。指生产单位(主要为企业)作为系统中的各个要素的综合生产率,以区别于要素生产率(如技术生产率)。测算公式为:全要素生产率=产出总量/全部资源投入量。 数据测算:包含OL、FE、LP、OP、GMM共五种TFP测算方法!数据结果包括excel和dta格式,其中重要指标包括证券代码,固定资产净额,营业总收入,营业收入,营业成本,销售费用,管理费用,财务费用,购建固定资产无形资产和其他长期资产支付的现金,支付给职工以及为职工支付的现金,员工人数,折旧摊销,行业代码,上市日期,AB股交叉码,退市日期,年末是否ST或PT等变量指标分析。文件包括计算方法说明及原始数据和代码。 数据名称:上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM) 数据年份:2000-2023年 数据指标:证券代码、year、TFP_OLS、TFP_FE、TFP_LP1、TFP_OP、TFP_OPacf、TFP_GMM

    多种编程语言下算法实现资源汇总

    内容概要:本文详细总结了多种编程语言下常用的算法实现资源,涵盖Python、C++、Java等流行编程语言及其相关的开源平台、在线课程和权威书籍。对于每种语言而言,均提供了具体资源列表,包括开源项目、标准库支持、在线课程及专业书籍推荐。 适合人群:适用于所有希望深入研究并提高特定编程语言算法能力的学习者,无论是编程新手还是有一定经验的技术人员。 使用场景及目标:帮助开发者快速定位到合适的算法学习资料,无论是出于个人兴趣自学、面试准备或是实际工作中遇到的具体算法问题,都能找到合适的解决方案。 其他说明:文中提及多个在线学习平台和社区网站,不仅限于某一特定语言,对于跨学科或多元化技能培养也具有很高的参考价值。

    基于springboot的交通旅游订票系统源码数据库文档.zip

    基于springboot的交通旅游订票系统源码数据库文档.zip

    GO语言教程:基础知识与并发编程

    内容概要:本文档是一份详细的GO语言教程,涵盖了Go语言的基础语法、数据类型、控制结构、函数、结构体、接口以及并发编程等多个方面。主要内容包括Go语言的基本概念和历史背景、环境配置、基本语法(如变量、数据类型、控制结构)、函数定义与调用、高级特性(如闭包、可变参数)、自定义数据类型(如结构体、接口)以及并发编程(如goroutine、channel、select)等内容。每部分内容都附有具体的代码示例,帮助读者理解和掌握相关知识点。 适合人群:具备一定编程基础的开发者,尤其是希望深入学习和应用Go语言的技术人员。 使用场景及目标:①初学者通过本教程快速入门Go语言;②有一定经验的开发者系统复习和完善Go语言知识;③实际项目开发中利用Go语言解决高性能、高并发的编程问题。 阅读建议:本文档全面介绍了Go语言的各项基础知识和技术细节,建议按章节顺序逐步学习,通过动手实践代码示例加深理解。对于复杂的概念和技术点,可以通过查阅更多资料或进行深入研究来巩固知识。

    time_series_at_a_point.ipynb

    GEE训练教程

    memcached笔记资料

    memcached笔记资料,配套视频:https://www.bilibili.com/list/474327672?sid=4486766&spm_id_from=333.999.0.0&desc=1

    基于springboot校内跑腿业务系统源码数据库文档.zip

    基于springboot校内跑腿业务系统源码数据库文档.zip

    计算机控制光感自动窗帘控制系统设计.doc

    计算机控制光感自动窗帘控制系统设计.doc

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    原生JS实现斗地主小游戏源码.zip

    这是一个原生的JS网页版斗地主小游戏,代码注释全。带有斗地主游戏基本的地主、选牌、提示、出牌、倒计时等功能。简单好玩,欢迎下载

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    毕业设计&课设_含多功能的远程控制工具集(已停维护),含命令行、文件管理、桌面功能.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    Sen2_NDVI_Max.txt

    GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载

    基于springboot家校合作平台源码数据库文档.zip

    基于springboot家校合作平台源码数据库文档.zip

Global site tag (gtag.js) - Google Analytics