this.textbox1.text = fbd.selectedpath.tostring();
directoryinfo directory = new directoryinfo(this.textbox1.text.trim());
fileinfo fileitem = new fileinfo(directory.getfiles()[0].fullname);
filestream fs = file.openread(fileitem.fullname);
streamreader r = new streamreader(fs);
string pdftext = r.readtoend();
regex rx1 = new regex(@"/type/s*/page[^s]");//正則
matchcollection matches = rx1.matches(pdftext);
messagebox.show("the pdf file has " + matches.count.tostring() + " page(s).");
php 計算 pdf檔案頁數
獲取pdf檔案頁數的函式獲取 檔案應當對當前使用者可讀 linux下 param string path 檔案路徑 return array 陣列第一位表示成功與否,第二位表示提示資訊 function getpdfpages path 不存在!if is readable path return ...
Python按照指定頁數分割PDF檔案
已經更新pdf分割器3.0 通過python中的pypdf2模組實現,具體操作步驟分為 1 獲取原始pdf檔案 2 將要分割的pdf內容格式化 3 例項乙個 pdf檔案編寫器 4 把3到4頁放到pdf檔案編寫器 5 pdf檔案輸出 執行結果 生成檔案 內容.pdf 分割後的內容 具體實現 如下 co...
SpringMVC通過註解獲得引數
springmvc可以通過requestparam註解來對映獲得引數,具體用法如下 例子 配置過程省略 1.新建controller類 執行結果 補充 如果表單名跟方法的引數名一致的話,無需再用 requestparam註解來對映。如改為public string requestparam stri...