Autor Thema: Lotus Script - File Import / open  (Gelesen 9795 mal)

Offline sculer

  • Aktives Mitglied
  • ***
  • Beiträge: 117
Lotus Script - File Import / open
« am: 16.08.07 - 14:34:22 »
Hallo,

ich hab leider bisher noch nicht die lösung hier in den Forum gefunden, daher poste ich es nun mal.

Ich hab folgendes Ziel (in Lotus Script):
Ich will ein Fenster ala @Prompt haben, wo ich eine File angeben kann, welches dann den inhalt der Datei in einer Variable speichert. Somit kann ich dann einen Parser drüber laufen lassen und somit alles sortieren usw.......

Das Problem was ich hab, wie bekomm ich eine File import, so dass ich den inhalt des Files in einer Variablen hab. (bitte kurzes Code Beispiel)

PS: es handelt sich hier um eine html Datei, also Klartext.

Danke Gruß

Glombi

  • Gast
Re: Lotus Script - File Import / open
« Antwort #1 am: 16.08.07 - 14:36:08 »
Aus der Hilfe:

 Dim ws As New NotesUIWorkspace
  REM Get filename from user
  filenames = ws.OpenFileDialog( _
  True, "Select files",, "c:\")
  If Not(Isempty(filenames)) Then
    Forall filename In filenames
     '// ....
    End Forall
  End If

Offline flaite

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 2.966
    • mein del.icio.us
Re: Lotus Script - File Import / open
« Antwort #2 am: 16.08.07 - 14:40:51 »
Für das Auslesen der Dateien steht dieses Beispiel in der Notes-Hilfe.
Code
' In this example, LotusScript reads the contents of a
' comma-delimited ASCII file (c:\123w\work\thenames.txt)
' into an array of RecType. RecType is a user-defined
' data type.
' c:\123w\work\thenames.txt consists of the following:
' "Maria Jones", 12345
' "Roman Minsky", 23456
' "Joe Smith", 34567
' "Sal Piccio", 91234

Type RecType
   empId As Double
   employee As String 
End Type       
Dim arrayOfRecs() As RecType
' A dynamic array that will get sized to
' the number of lines in c:\123w\work\thenames.txt
Dim txt As String
Dim fileNum As Integer
Dim counter As Integer
Dim countRec As Integer
' Get an unused file number so LotusScript can open a file.
fileNum% = FreeFile()
counter% = 0
Open "c:\123w\work\thenames.txt" For Input As fileNum%
Do While Not EOF(fileNum%)
   ' Read each line of the file.
   Line Input #fileNum%, txt$
   ' Increment the line count.
   counter% = counter% + 1
Loop
' Return the file pointer to the beginning of the file.
Seek fileNum%, 1
' The file has counter number of lines in it, so
' arrayOfRecs() is defined with that number of elements.
ReDim arrayOfRecs(1 To counter%)
' Read the contents of the file into arrayOfRecs.
For countRec% = 1 To counter%
   Input #fileNum%, arrayOfRecs(countRec%).employee$, _
      arrayOfRecs(countRec%).empId#
Next
Close fileNum%
Print arrayOfRecs(2).employee$ & " " arrayOfRecs(2).empId#
' Output:
' Roman Minsky 23456

Da sollte auf jeden Fall noch ein solides Errorhandling eingebaut werden.
Close fileNum% MUSS auch in solchen Fällen aufgerufen werden, wenn aus welchen Gründen auch immer während des Lesevorgangs ein Fehler auftritt. 
Ausnahme:  Der Computer explodiert während des Lesevorgangs oder jemand zieht den Stecker. 
Ich stimm nicht mit allen überein, aber mit vielen und sowieso unterhaltsam -> https://www.youtube.com/channel/UCr9qCdqXLm2SU0BIs6d_68Q

---

Aquí no se respeta ni la ley de la selva.
(Hier respektiert man nicht einmal das Gesetz des Dschungels)

Nicanor Parra, San Fabian, Región del Bio Bio, República de Chile

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz