中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

您的位置: 首頁 > 技術文檔 > 網(wǎng)絡編程 > 使用OpenOffice.org將各類文檔轉為PDF
Visual Studio DSL 入門(二) 回到列表 UML建模
 使用OpenOffice.org將各類文檔轉為PDF

作者:老趙 時間: 2010-06-17 文檔類型:轉載 來自:老趙點滴

第 1 頁 使用OpenOffice.org將各類文檔轉為PDF [1]
第 2 頁 使用OpenOffice.org將各類文檔轉為PDF [2]
第 3 頁 使用OpenOffice.org將各類文檔轉為PDF [3]
第 4 頁 使用OpenOffice.org將各類文檔轉為PDF [4]

完整代碼

在這里貼出“txt轉pdf”完整的可運行的示例代碼:

import java.lang._;
import java.io.File;
import ooo.connector.BootstrapSocketConnector;
import com.sun.star.lang.XComponent;
import com.sun.star.uno.XComponentContext;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.beans.PropertyValue;
import com.sun.star.frame.XComponentLoader;
import com.sun.star.frame.XStorable;
import com.sun.star.util.XCloseable;
object AnyToPdf extends Application {
  // get the remote office component context
  def createContext() : XComponentContext = {
    val oooExeFolder = "C:/Program Files/OpenOffice.org 3/program/"
    BootstrapSocketConnector.bootstrap(oooExeFolder)
  }
  def createComponentLoader(context: XComponentContext) : XComponentLoader = {
    // get the remote office service manager
    val mcf = context.getServiceManager()
    val desktop = mcf.createInstanceWithContext("com.sun.star.frame.Desktop", context)
    UnoRuntime.queryInterface(classOf[XComponentLoader], desktop)
  }
  def loadDocument(loader: XComponentLoader, inputFilePath: String) : Object = {
    // Preparing properties for loading the document
    val propertyValue = new PropertyValue()
    propertyValue.Name = "Hidden"
    propertyValue.Value = new Boolean(true)
    // Composing the URL by replacing all backslashs
    val inputFile = new File(inputFilePath)
    val inputUrl = "file:///" + inputFile.getAbsolutePath().replace('\\', '/')
    loader.loadComponentFromURL(inputUrl, "_blank", 0, Array(propertyValue))
  }
  def convertDocument(doc: Object, outputFilePath: String, convertType: String) {
    // Preparing properties for converting the document
    // Setting the flag for overwriting
    val overwriteValue = new PropertyValue()
    overwriteValue.Name = "Overwrite"
    overwriteValue.Value = new Boolean(true)
    // Setting the filter name
    val filterValue = new PropertyValue()
    filterValue.Name = "FilterName"
    filterValue.Value = convertType
    // Composing the URL by replacing all backslashs
    val outputFile = new File(outputFilePath)
    val outputUrl = "file:///" + outputFile.getAbsolutePath().replace('\\', '/')
    // Getting an object that will offer a simple way to store
    // a document to a URL.
    val storable = UnoRuntime.queryInterface(classOf[XStorable], doc)
    // Storing and converting the document
    storable.storeToURL(outputUrl, Array(overwriteValue, filterValue))
  }
  def closeDocument(doc: Object) {
    // Closing the converted document. Use XCloseable.clsoe if the
    // interface is supported, otherwise use XComponent.dispose
    val closeable = UnoRuntime.queryInterface(classOf[XCloseable], doc)
    if (closeable != null) {
      closeable.close(false)
    } else {
      val component = UnoRuntime.queryInterface(classOf[XComponent], doc)
      component.dispose()
    }
  }
  val inputFilePath = "D:\\convert\\input.txt"
  val outputFilePath = "D:\\convert\\output.pdf"
  // Getting the given type to convert to
  val convertType = "writer_pdf_Export"
  val context = createContext()
  println("connected to a running office ...")
  val loader = createComponentLoader(context)
  println("loader created ...")
  val doc = loadDocument(loader, inputFilePath)
  println("document loaded ...")
  convertDocument(doc, outputFilePath, convertType)
  println("document converted ...")
  closeDocument(doc)
  println("document closed ...")
}

很顯然,這里不是我所厭惡的Java語言。這是一段Scala代碼,就從最基本的代碼使用上看,Scala也已經(jīng)比Java代碼要節(jié)省許多了。

總結

其實解決這個問題還是走了不少彎路的,究其原因可能是從示例代碼出發(fā)去尋找解決方案,而并沒有去系統(tǒng)地閱讀各種資料。在這個過程中,我找到了一些比較重要的文檔:

API/Tutorials/PDF export:對于PDF導出功能各種參數(shù)的詳細解釋。

Text Documents:關于文本文檔相關操作的詳細說明。

DocumentHanding:“文檔操作”示例代碼的解釋,包括文檔打印等等。

當然,最詳細文檔莫過于完整的開發(fā)人員指南了,如果您想要詳細了解這方面的內(nèi)容,這應該也屬于必讀內(nèi)容之一。

有了OpenOffice.org,就相當于我們擁有了一套完整的文檔操作類庫,可以用來實現(xiàn)各種功能。除了轉PDF以外,例如我們還可以將一篇數(shù)百萬字的小說加載為文檔,再每十頁導出一份圖片,方便用戶在線預覽順便防點拷貝。此外,雖然我是在Windows下操作OOo,但是OOo和Java本身都是跨平臺的,因此同樣的代碼也可以運行在Linux平臺上。我目前正在嘗試在Ubuntu Server上部署一份OOo和代碼,如果有什么特別的情況,我也會另行記錄。

事實上有一點我之前一直沒有提到:如果您使用Windows及.NET進行開發(fā),OOo也提供了C++/CLI接口,可以使用C#、F#進行編程,且代碼與本文描述的幾乎如出一轍(只要把queryInterface方法調用改成直接轉換),在.NET 4.0中也可正常使用。

如果您有其他解決方案,也請一起交流一下。

本文鏈接:http://www.95time.cn/tech/program/2010/7702.asp 

出處:老趙點滴
責任編輯:bluehearts

上一頁 使用OpenOffice.org將各類文檔轉為PDF [3] 下一頁

◎進入論壇網(wǎng)絡編程版塊參加討論

相關文章
使用 iPhone 離線瀏覽電子文檔
PDF、ZIP、DOC鏈接的標注
PDF印刷輸出之江湖告急
Acrobat 3D界面搶鮮看
Flash Paper 2
關鍵字搜索 常規(guī)搜索 推薦文檔
熱門搜索:CSS Fireworks 設計比賽 網(wǎng)頁制作 web標準 用戶體驗 UE photoshop Dreamweaver Studio8 Flash 手繪 CG
站點最新 站點最新列表
周大!熬•自然”設計大賽開啟
國際體驗設計大會7月將在京舉行
中國國防科技信息中心標志征集
云計算如何讓安全問題可控
云計算是多數(shù)企業(yè)唯一擁抱互聯(lián)網(wǎng)的機會
阿里行云
云手機年終巨獻,送禮標配299起
阿里巴巴CTO王堅的"云和互聯(lián)網(wǎng)觀"
1499元買真八核 云OS雙蛋大促
首屆COCO桌面手機主題設計大賽
欄目最新 欄目最新列表
淺談JavaScript編程語言的編碼規(guī)范
如何在illustrator中繪制臺歷
Ps簡單繪制一個可愛的鉛筆圖標
數(shù)據(jù)同步算法研究
用ps作簡單的作品展示頁面
CSS定位機制之一:普通流
25個最佳最閃亮的Eclipse開發(fā)項目
Illustrator中制作針線縫制文字效果
Photoshop制作印刷凹凸字體
VS2010中創(chuàng)建自定義SQL Rule
>> 分頁 首頁 前頁 后頁 尾頁 頁次:4/41個記錄/頁 轉到 頁 共4個記錄

藍色理想版權申明:除部分特別聲明不要轉載,或者授權我站獨家播發(fā)的文章外,大家可以自由轉載我站點的原創(chuàng)文章,但原作者和來自我站的鏈接必須保留(非我站原創(chuàng)的,按照原來自一節(jié),自行鏈接)。文章版權歸我站和作者共有。

轉載要求:轉載之圖片、文件,鏈接請不要盜鏈到本站,且不準打上各自站點的水印,亦不能抹去我站點水印。

特別注意:本站所提供的攝影照片,插畫,設計作品,如需使用,請與原作者聯(lián)系,版權歸原作者所有,文章若有侵犯作者版權,請與我們聯(lián)系,我們將立即刪除修改。

您的評論
用戶名:  口令:
說明:輸入正確的用戶名和密碼才能參與評論。如果您不是本站會員,你可以注冊 為本站會員。
注意:文章中的鏈接、內(nèi)容等需要修改的錯誤,請用報告錯誤,以利文檔及時修改。
不評分 1 2 3 4 5
注意:請不要在評論中含與內(nèi)容無關的廣告鏈接,違者封ID
請您注意:
·不良評論請用報告管理員,以利管理員及時刪除。
·尊重網(wǎng)上道德,遵守中華人民共和國的各項有關法律法規(guī)
·承擔一切因您的行為而直接或間接導致的民事或刑事法律責任
·本站評論管理人員有權保留或刪除其管轄評論中的任意內(nèi)容
·您在本站發(fā)表的作品,本站有權在網(wǎng)站內(nèi)轉載或引用
·參與本評論即表明您已經(jīng)閱讀并接受上述條款
推薦文檔 | 打印文檔 | 評論文檔 | 報告錯誤  
專業(yè)書推薦 更多內(nèi)容
網(wǎng)站可用性測試及優(yōu)化指南
《寫給大家看的色彩書1》
《跟我去香港》
眾妙之門—網(wǎng)站UI 設計之道
《Flex 4.0 RIA開發(fā)寶典》
《贏在設計》
犀利開發(fā)—jQuery內(nèi)核詳解與實踐
作品集 更多內(nèi)容

雜⑦雜⑧ Gold NORMANA V2