Jsp和json實現伺服器端分頁邏輯樣本

來源:互聯網
上載者:User

伺服器上的資料存放區在json檔案中,一個評論列表comment_list.json

{"comment_table"[{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}{"userName": "zhangsan", "commentTime": "2012-5-26 12:00:00 UTC", "comment": "hello, wo shi zhansan"}]}

使用表單來提交資料到jsp頁面,沒有使用現在流行的ajax技術哦。

<form method="post" action="resbrowse_2.jsp"><div align="left" style="padding-left:10px; margin-top:10px"><input id="comment_text" name="comment_text"  type="text"  maxlength="100"  style="width:580px;height:40px ;background-color:#FFFBF0 " /></div><div align="right" style="width:595px;margin-top:5px"><!--注意這兒要使用submit標籤哦,否則不會提交資料--> <input type="submit" name="comment_button" onclick="addComment()" value="發表評論" style="width:80px;height:25px"  /></div><!-- 用隱藏標籤提交“當前頁碼”給伺服器--><input type="hidden" name="page_index"/><!-- 用隱藏標籤提交“每頁大小”給伺服器-->        <input type="hidden" name="page_size" /></form>

現在看看伺服器端的jsp邏輯是怎麼處理客戶提交的這些資料的?

引入json包,可以在之前的文章裡面找到json處理的包

(http://blog.csdn.net/wuzh1230/article/details/6613033)

<%@ page import="import org.json.*" %>

<!--定義了2個全域的java對象來儲存評論列表和資源清單,重啟伺服器會丟失--><%! JSONArray cmtTable = new JSONArray();%><%! JSONArray resTable = new JSONArray();%><% // 擷取參數String strCmnt = request.getParameter("comment_text");int nPageIndex = Integer.parseInt(request.getParameter("page_index"));int nPageSize = Integer.parseInt(request.getParameter("page_size")) ;// 通過上面2個方法,我們就拿到了用戶端通過表單提交的3個參數// 1, 使用者剛剛的評論// 2, 使用者當前所在的頁面// 3, 每個頁面顯示的評論個數// 首先,我們把使用者提交的評論先附加到評論列表的那個json檔案中去// ----這個例子裡,我用了一個JSONObect記憶體全域對象來儲存了,// ----檔案讀取的方式,這裡暫不介紹了// ----這樣做的壞處是tomcat重新啟動以後使用者的資料就沒有了。// 其次,讀取json,解析成java的linkedlist,// 最後根據使用者的當前頁碼和每頁大小擷取列表中的一段返回給瀏覽器%>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.