最近搞乙個新聞系統,有些文章過於長,所以領導要求乙個新聞的內容分頁,其實就是長字串分頁!上網找了找,自己改了改 做個記錄 **如下:
public class stringpager
/*** 返回當前頁的字串.
* * @return
*/public string getcurrentpagedtext() else if (gettotalpage() > 0)
} catch (exception e)
return null;
}/**
* @return returns the 當前頁碼數.
*/public int getcurrentpage()
/*** 設定當前頁碼, 從 1 開始.
* * @param currentpage
* the 當前頁碼數 to set.
*/public void setcurrentpage(int currentpage)
this.currentpage = currentpage;
}/**
* @return returns the 總頁碼數, 如果沒有資料, 就返回 1.
*/public int gettotalpage()
/*** @param totalpage
* the totalpage to set.
*/public void settotalpage(int totalpage)
/*** @return returns the 每頁顯示字元數.
*/public int getsizeperpage()
/*** @param sizeperpage
* the 每頁顯示字元數 to set.
*/public void setsizeperpage(int sizeperpage)
/*** @return returns the 需要分頁的長字串.
*/public string gettext()
/*** @param text
* the 需要分頁的長字串 to set.
*/public void settext(string text)
public static void main(string args)
}
以上為全部**
public static void main(string args)
}
測試**,細心的人,一看就會使用了!
java字串排序
一 如果要排序的為字串,如 string sortstr acdfe char arraych sortstr tochararray 1,把sortstr轉換為字元陣列 arrays.sort arraych 2,利用陣列幫助類自動排序 system.out.println arrays.tost...
java 字串解析
stringtokenizer tokenizer new stringtokenizer number,boolean bool true while tokenizer.hasmoretokens catch exception e 將字串轉化為陣列的方法 int gv int i 0 stri...
java 字串解析
stringtokenizer tokenizer newstringtokenizer number,boolean bool true while tokenizer.hasmoretokens catch exception e 將字串轉化為陣列的方法 intgv inti 0 stringt...