敬告:本部落格所記錄的內容均為自己平時記錄所得,隨便看看。
//得到當中的超連結
dispatch one = dispatch.call(docs, "item", new variant(1)).todispatch();
string ***x = dispatch.get(one, "content").tostring();
system.out.println(***x);
dispatch shapes = dispatch.get(doc, "inlineshapes").todispatch();
//獲得當中的一項
dispatch shape = dispatch.call(shapes, "item", new variant(1)).todispatch();
dispatch link = dispatch.get(shape,"linkformat").todispatch();
string patch = dispatch.get(link,"sourcepath").tostring();
string name = dispatch.get(link,"sourcename").tostring();
string newfile = patch+"\\"+name;
///獲得非連線的物件,且另存為
dispatch shape = dispatch.call(shapes, "item", new variant(0)).todispatch();
dispatch oneo = dispatch.get(shape,"oleformat").todispatch();
"open");
string type = dispatch.get(oneo,"classtype").tostring();
dispatch obj = dispatch.get(oneo,"object").todispatch();
用Jacob介面實現Java對Word的列印操作
記錄下帶引數列印word文件的思路 1.使用jacob建立 activex部件物件 activexcomponent 2.開啟word文件 dispatch wrddocs wordcom.getproperty documents todispatch worddoc dispatch.invok...
jacob對word文件另存操作的標誌記錄備忘
word型別轉換標識 作為type格式儲存到臨時檔案 variant 0 doc variant 1 dot variant 2 5 variant 7 txt variant 6 rft variant 8 variant 10 htm 8是直接轉html帶有微軟標籤不建議使用 10是篩選轉htm...
Word中的字型大小
word對字型大小採用兩種不同的度量單位,其中一種是以 號 為度量單位,如常用的 初號 小初 一號 小一 七号 八號 等 另一種是以國際上通用的 磅 28.35磅等於1厘公尺 為度量單位。號 磅 與 公釐 之間的對應關係見附表。字型大小初號 小初一號 小一二號 小二三號小三磅 公釐14.8 12.7...