需要帮助将嵌入的 Word 文档从 Notes 数据库文件导出到本地 Windows 文件夹

发布于 2024-12-15 18:27:25 字数 210 浏览 3 评论 0原文

我们有一个 Lotus Notes 7.0 环境,服务器上有一个文档库 (.nsf) 数据库文件。

我有一个本地副本(如果有帮助的话),并且希望将所有嵌入的 Word 文档导出到本地 Windows 文件夹或桌面。

这可能吗?

有一个名为“Detachit”的软件可以在线购买,但每个许可证非常昂贵(1250 美元),因此如果有人可以提供帮助,我将不胜感激。

We have a lotus notes 7.0 environment with a Document library (.nsf) database file on the server.

I have a local copy (if that helps) and would like to export all the embedded word documents within to a local windows folder or desktop.

Is this possible ?

There is a software named "Detachit" available to purchase online but is very expensive ($1250 USD), per license and hence would really appreciate if someone can help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2024-12-22 18:27:25

如果您知道如何编写 LotusScript,那实际上非常简单。来自帮助:

Dim doc As NotesDocument
Dim rtitem As Variant
Dim fileCount As Integer
Const MAX = 100000
fileCount = 0    
'...set value of doc...
Set rtitem = doc.GetFirstItem( "Body" )
If ( rtitem.Type = RICHTEXT ) Then
  Forall o In rtitem.EmbeddedObjects
    If ( o.Type = EMBED_ATTACHMENT ) _
    And ( o.FileSize > MAX ) Then
      fileCount = fileCount + 1
      Call o.ExtractFile _
      ( "c:\reports\newfile" & Cstr(fileCount) )
      Call o.Remove
      Call doc.Save( True, True )
    End If
  End Forall
End If

或者您可以使用Java: 如何使用java从.nsf(lotus Notes)文件中获取所有附件

If you know how to program lotusscript it is actually very easy. From the help:

Dim doc As NotesDocument
Dim rtitem As Variant
Dim fileCount As Integer
Const MAX = 100000
fileCount = 0    
'...set value of doc...
Set rtitem = doc.GetFirstItem( "Body" )
If ( rtitem.Type = RICHTEXT ) Then
  Forall o In rtitem.EmbeddedObjects
    If ( o.Type = EMBED_ATTACHMENT ) _
    And ( o.FileSize > MAX ) Then
      fileCount = fileCount + 1
      Call o.ExtractFile _
      ( "c:\reports\newfile" & Cstr(fileCount) )
      Call o.Remove
      Call doc.Save( True, True )
    End If
  End Forall
End If

Or you can use Java: How do I get all the attachments from a .nsf(lotus notes) file using java

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文