下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、下面的代碼實(shí)現(xiàn)了數(shù)據(jù)導(dǎo)出,并實(shí)現(xiàn)了數(shù)據(jù)導(dǎo)入到其他系統(tǒng)中.,包括附件的處理.public void run(String servername, String username, String password,String dbname, String viewname) try / 取得配置文件取得臨時中專的文件目錄.提交的數(shù)據(jù)到服務(wù)的名稱 ,端口ResourceBundle localizationResources = ResourceBundle.getBundle("ip");/ 臨時目錄String temppath = localizationResource
2、s.getString("temppath");/ 端口String port = localizationResources.getString("port");/ 應(yīng)用名稱String webapp = localizationResources.getString("webapp");/ 文檔數(shù)量int rundocnum = 0;/ 附件的文件數(shù)量int = 0;/ 應(yīng)用的域名String dominoHost = servername;/ "dev1"/ 數(shù)據(jù)操作的sessionSession sessi
3、on;/ 通過 http 獲取 IORString strIOR = null;URL url = new URL("http:/" + dominoHost + "/diiop_ior.txt");InputStream in = url.openStream();BufferedReader br = new BufferedReader(new InputStreamReader(in);for (boolean bExit = false; !bExit;) String line = br.readLine();if (line = null)
4、 bExit = true; else if (strIOR = null)strIOR = line;elsestrIOR = strIOR + line;if (strIOR.startsWith("IOR:")bExit = true;br.close();/ System.out.println("strIOR - " + strIOR);session = NotesFactory.createSessionWithIOR(strIOR, username,password);/ System.out.println("session
5、" + session); / 如果這一行打印出來了,表示連接成功/ Database db = session.getDatabase(null, "zboa/gkxx.nsf");/ Database db = session.getDatabase(null, "zboa/scjyxx.nsf");Database db = session.getDatabase(null, dbname);/ String p = session.getPlatform();/ System.out.println("run Platform
6、 = " + p);/ 開始執(zhí)行的時間long a = System.currentTimeMillis();System.out.print("開始計(jì)時 ");/* Vector vss= (Vector)db.getViews(); List vs=new ArrayList();* for(int i=0;i<vss.size();i+) /* vs.add(View)vss.get(i).getName() ; System.out.println(View)* vss.get(i).getName(); * * vss.clear(); Syste
7、m.out.print("getViews"+db.getViews().size();* for(int i=0;i<2;i+)* System.out.print("用時:"+(System.currentTimeMillis()-a); View v =* (View) db.getView(vs.get(i).toString().trim();*/View v = (View) db.getView(viewname);/ 直接使用某個視圖/ 當(dāng)前視圖的文檔數(shù)量int count = v.getAllEntries().getCount(
8、);System.out.println("視圖名稱:" + v.getName();System.out.print("別名:" + v.getAliases();ViewNavigator nav = v.createViewNav();ViewEntry entry = nav.getFirstDocument();/* 對視圖包括的文檔的循環(huán)查詢并處理*/for (int j = 0; j < count; j+) rundocnum+;String title = ""String user = ""
9、;String body = ""String key = ""List = new ArrayList();System.out.print(j + 1) + ".");System.out.println("標(biāo)題"+ entry.getDocument().getItemValueString("title");title = entry.getDocument().getItemValueString("title");String oldname = entry.ge
10、tDocument().getAuthors().toString().trim();String newname = oldname.substring(oldname.indexOf("cn=") + 5,oldname.indexOf("/OU");user = erInfoUtil.findUIDbyName(entry.getDocument().getAuthors().toString().trim();System.out.println("作者:" + user);body = entry.getDocument()
11、.getItemValueString("body");System.out.println("正文:" + body);Enumeration items = entry.getDocument().getItems().elements();/ 刪除上一個文檔附件文件在本地的副本if (!entry.getDocument().getItems().isEmpty() = new );if (f1.isDirectory() for (int m = 0; m < f1.listFiles().length; m+) System.out.pr
12、int("刪除文件"+ f1.listFiles()m.getAbsoluteFile().getPath();f1.listFiles()m.getAbsoluteFile().delete();/ 對當(dāng)前文檔的附件生成副本并上傳到服務(wù)器while (items.hasMoreElements() Item item = (Item) items.nextElement();if (item.getType() != Item.ATTACHMENT) else ;System.out.println("附件:"+ entry.getDocument()
13、.getAttachment(item.getValueString().getName();EmbeddedObject EObjAttachment = entry.getDocument().getAttachment(item.getValueString();InputStream is = EObjAttachment.getInputStream();long = is.available();if ( > 0) byte buf = new byte(int) ;is.read(buf);File f = new + "/"+ EObjAttachme
14、nt.getSource(); fos = new (f);fos.write(buf);fos.flush();fos.close();System.out.print("創(chuàng)建文件" + f.getAbsolutePath();(f);/ 提交數(shù)據(jù)到數(shù)據(jù)庫/ 調(diào)用增加數(shù)據(jù)到數(shù)據(jù)庫的方法1 返回一個keykey = "0"/ 此處增加數(shù)據(jù)到數(shù)據(jù)庫/ 調(diào)用http post 的方式提交數(shù)據(jù)if () > 0) InetAddress addr = InetAddress.getLocalHost();String sAddr = addr.toStr
15、ing(); / localhost/String sIP = sAddr.substring(sAddr.indexOf('/') + 1);if (!webapp.equals("") webapp = webapp + "/"PostMethod = new PostMethod("http:/" + sIP+ ":" + port + webapp + "servlet/upload?key="+ key);System.out.println(&quo
16、t;http:/" + sIP + ":" + port+ webapp + "servlet/upload?key=" + key);try Part parts = new Part();for (int i = 0; i < (); i+) partsi = new ("hello" + i, new File(i).toString();.setRequestEntity(new MultipartRequestEntity(parts, ();HttpClient client = new HttpClient();client.getHttpConnectionManager().getParams().setConnectionTimeout(5000);int status = client.executeMethod(); catch (Exception e) e.printStackTrace();/ 提交完成/ 每當(dāng)處理完當(dāng)前文檔,必須把指針指向下一個文檔地址entry = nav.getNextDocument();
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 職業(yè)教育學(xué)課程設(shè)計(jì)
- 2025版高壓輸電線路維護(hù)供電合同范本3篇
- 英語教學(xué)與課程設(shè)計(jì)
- 2024沈陽農(nóng)膜產(chǎn)業(yè)園區(qū)生態(tài)環(huán)境保護(hù)與治理合同3篇
- 2024年行政人員勞動合同范本:合同解除與賠償標(biāo)準(zhǔn)3篇
- 2024年版城市道路建設(shè)項(xiàng)目施工合同
- 法治課程設(shè)計(jì)方案
- 2024版公司保密協(xié)議制度
- 2024年甲乙雙方關(guān)于二手房交易過程中協(xié)助辦理手續(xù)合同
- 2024年特色養(yǎng)殖項(xiàng)目租賃與市場推廣合作協(xié)議3篇
- ISO 56001-2024《創(chuàng)新管理體系-要求》專業(yè)解讀與應(yīng)用實(shí)踐指導(dǎo)材料之15:“6策劃-6.4創(chuàng)新組合”(雷澤佳編制-2025B0)
- 廣東省廣州市天河區(qū)2022-2023學(xué)年七年級上學(xué)期期末語文試題(含答案)
- 標(biāo)準(zhǔn)廠房施工方案
- DBJT45T 037-2022 高速公路出行信息服務(wù)管理指南
- 港口碼頭租賃協(xié)議三篇
- 浙江省紹興市柯橋區(qū)2023-2024學(xué)年高一上學(xué)期期末教學(xué)質(zhì)量調(diào)測數(shù)學(xué)試題(解析版)
- 項(xiàng)目部實(shí)名制管理實(shí)施措施
- 顳下頜關(guān)節(jié)疾病試題
- 福建省廈門市2023-2024學(xué)年高二上學(xué)期期末考試質(zhì)量檢測化學(xué)試題 附答案
- 非甾體抗炎藥圍術(shù)期鎮(zhèn)痛專家共識(2024 版)解讀
- 安全使用文具班會課
評論
0/150
提交評論