pyunoを使用してPythonスクリプトを完成させ、document / xls/rtfなどをpdfに正常に変換しました。次に、mssqlデータベースを更新する必要がありました。これは、現在python 2.3をサポートしているオープンオフィスのためです。これは古くからあり、まともなデータベースライブラリのサポートが不足しています。そのため、私はJythonを使用することにしました。この方法では、古いpyunoを使用してオブジェクト指向Python環境内で実行することで負担がかかりません。
これは、変換コードが壊れていることも意味し、pyunoライブラリの代わりにjavaライブラリを使用する必要があります。
import com.sun.star.beans.PropertyValue as PropertyValue
import com.sun.star.bridge.XUnoUrlResolver as XUnoUrlResolver
import com.sun.star.comp.helper.Bootstrap as Bootstrap
->>importcom.sun.star.frame。 XComponentLoader as XComponentLoader
->> import com.sun.star.frame.XStorable as XStorable
import com.sun.star.lang.XMultiComponentFactory as XMultiComponentFactory
import com.sun.star.uno.UnoRuntime as UnoRuntime
import com.sun.star.uno .XComponentContext as XComponentContext
'->>'を含むインクルードはインポートせず、コンパイラはcom.sun.star.frameを認識しません。'フレーム'ビットを認識できません。これらは私が含めたライブラリです。
代替テキストhttp://www.freeimagehosting.net/uploads/eda5cda76d.jpg
この問題に関するいくつかのアドバイスは好評です
context = XComponentContext
xMultiCompFactory = XMultiComponentFactory
xcomponentloader = XComponentLoader//Pythonで使用
ctx=なし
smgr=なし
doc=なし
url=なしcontext = Bootstrap.bootstrap()
xMultiCompFactory = self.context.getServiceManager()
xcomponentloader = UnoRuntime.queryInterface(XComponentLoader.class、.... xMultiCompFactory.createInstanceWithContext( "com.sun.star.frame.Desktop"、context))file = "file:\\" + file
//Javaのurl=uno.systemPathToFileUrl(file)に相当するもので、パス
のプロパティを適切にフォーマットするために使用できます= []
p = PropertyValue()
p.Name = "Hidden"
p.Value = Trueproperties.append
(p)
properties = tuple(properties)
doc = xcomponentloader.loadComponentFromURL(file、 "_blank"、0、properties)