Vbscript - чтение INI или текстового файла для конкретного раздела - PullRequest
4 голосов
/ 16 августа 2010

Я хочу сохранить некоторые адреса в текстовом файле, а затем прочитать определенные части файла, основываясь на членстве в группах.Я сделал все, что касается членства в группе, поэтому мне не нужна помощь для этого.

Но я не уверен, стоит ли мне использовать простой текстовый файл или файл INI?
Дело в том, что почтовые адреса в две или три строки, и мне нужен разрыв строки.Я пытался использовать простой текстовый файл, но мне не удалось правильно получить разрыв строки.

Так что INI-файлы предпочтительнее?

INI-файл может выглядеть так:*

[London]
Address 1
Postbox 3245
58348 London

[Copenhagen]
Address 2
Postbox 2455
5478347 Copenhagen

Я не совсем уверен, возможно ли это в INI-файле, возможно, мне нужно также назвать каждую строку.ИЛИ, я мог бы использовать простой текстовый файл и искать слово [london], а затем читать каждую строку, пока не произойдет разрыв строки.Затем сохраните все эти строки в переменной, которую я передам?

Как вы, ребята, решите это?

Ответы [ 4 ]

2 голосов
/ 19 сентября 2011

Я написал небольшой класс VBScript, который обрабатывает «настоящие» INI-файлы, написанные в таком формате:

[section_name]
key1 = value1
key2 = value2

Код для класса:

Class IniFileObject
    Private m_Data

    Private Sub Class_Initialize
        Set m_Data = Server.CreateObject("Scripting.Dictionary")
    End Sub

    Private Sub Class_Terminate
        Dim key
        If IsObject(m_Data) Then
            For Each key In m_Data
                m_Data(key).RemoveAll
                Set m_Data(key) = Nothing
            Next
            m_Data.RemoveAll
            Set m_Data = Nothing
        End If
    End Sub

    Public Function Init(sFilePath)
        Dim arrLines, sLine, x
        Dim sCurSection, oSectionDict
        Set Init = Me
        arrLines = GetFileLines(sFilePath)
        If Not(IsArray(arrLines)) Then Exit Function
        sCurSection = ""
        For x = 0 To UBound(arrLines)
            sLine = Trim(arrLines(x))
            If Len(sLine)>0 Then
                If Left(sLine, 1)="[" Then
                    If Not(HandleSectionLine(sLine, sCurSection)) Then Exit Function
                Else  
                    If Len(sCurSection)=0 Then
                        Err.Raise 1005, "IniFileObject init", "Found value outside any section (" & Server.HTMLEncode(sLine) & ")"
                        Exit Function
                    End If

                    Set oSectionDict = m_Data(sCurSection)
                    If Not(ParseOneLine(sLine, oSectionDict)) Then Exit Function
                    Set m_Data(sCurSection) = oSectionDict
                End If
            End If
        Next
    End Function

    Public Property Get ReadValue(section, key)
        Dim oSectionDict
        ReadValue = ""
        If m_Data.Exists(section) Then
            Set oSectionDict = m_Data(section)
            If oSectionDict.Exists(key) Then ReadValue = oSectionDict(key)
        End If
    End Property

    Private Function ParseOneLine(ByVal sLine, ByRef oSectionDict)
        Dim arrTemp, sErrorMsg, sKey
        sErrorMsg = ""
        ParseOneLine = True
        If Left(sLine, 2)="//" Or Left(sLine, 1)="'" Or Left(sLine, 1)="{" Then Exit Function
        arrTemp = Split(sLine, "=")
        If UBound(arrTemp)=1 Then
            sKey = Trim(arrTemp(0))
            If (Len(sKey)>0) And (Len(arrTemp(1))>0) Then
                If Not(oSectionDict.Exists(sKey)) Then
                    oSectionDict.Add sKey, Trim(arrTemp(1))
                Else  
                    sErrorMsg = "Key already exists"
                End If
            Else  
                sErrorMsg = "Empty key or value"
            End If
        Else  
            sErrorMsg = "Missing or too much '=' characters"
        End If
        Erase arrTemp
        If Len(sErrorMsg)>0 Then
            ParseOneLine = False
            Err.Raise 1006, "IniFileObject Init", "Failed to parse single line (" & Server.HTMLEncode(sLine) & "): " & sErrorMsg
        End If
    End Function

    Private Function HandleSectionLine(ByVal sLine, ByRef sCurSection)
        HandleSectionLine = False
        If (Len(sLine)<3) Or (Right(sLine, 1)<>"]") Then
            Err.Raise 1002, "IniFileObject init", "Invalid line found: " & Server.HTMLEncode(sLine)
            Exit Function
        End If

        sCurSection = Mid(sLine, 2, Len(sLine) - 2)
        If m_Data.Exists(sCurSection) Then
            Err.Raise 1003, "IniFileObject init", "Section exists more than once: " & Server.HTMLEncode(sCurSection)
            Exit Function
        End If

        m_Data.Add sCurSection, Server.CreateObject("Scripting.Dictionary")
        HandleSectionLine = True
    End Function

    Private Function GetFileLines(sFilePath)
        Dim objFSO, oFile
        Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
        If Not(objFSO.FileExists(sFilePath)) Then
            Set objFSO = Nothing
            Err.Raise 1001, "IniFileObject init", "file path '" & Server.HTMLEncode(sFilePath) & "' does not exist, check permissions"
            Exit Function
        End If
        Set oFile = objFSO.OpenTextFile(sFilePath)
        GetFileLines = Split(oFile.ReadAll, VBCrLf)
        oFile.Close
        Set oFile = Nothing
        Set objFSO = Nothing
    End Function
End Class

Пример использования:

Dim filePath, ini
filePath = Server.MapPath("config.ini")
Set ini = New IniFileObject.Init(filePath)
Response.Write("Value for 'Key001': " & ini.ReadValue("MySection", "Key001") & "<br />")
Set ini = Nothing

Код выдает различные ошибки, когда файл не существует или содержит недопустимые строки, ошибки в значительной степени ясно. Можно «подавить» ошибки и не отображать страницу ошибок, используя такой код при использовании:

On Error Resume Next
    Set ini = New IniFileObject.Init(filePath)
    If Err.Number<>0 Then
        Response.Write("Error reading ini file")
    End If
On Error Goto 0
If IsObject(ini) Then
    Response.Write("Value for 'IP001': " & ini.ReadValue("IPaddress", "IP001") & "<br />")
    Set ini = Nothing
End If
1 голос
/ 19 августа 2010

Я бы, вероятно, вместо этого использовал бы файл CSV, где каждая строка будет представлять страну.

Country,Address1,Address2,Address3,Address4
London,Address 1,Postbox 3245,58348 London
Copenhagen,Address 2,Postbox 2455,5478347,Copenhagen

Если вы можете легко идентифицировать свои данные, то, возможно, у вас могут быть более описательные имена столбцов (т.е. Street1, Street2, Town, Почтовый индекс и т. Д.).

Этот формат файла также легко читается, поскольку вы читаете только одну строку входного файла за раз и разбиваете его, используя что-то вроде

aAddress = split(sLine, ",")

Toчтобы вам было еще проще работать, вы можете использовать объект словаря и использовать страну в качестве ключа, а массив в качестве значения

'sLine should be read from input file'
sLine = "Copenhagen,Address 2,Postbox 2455,5478347,Copenhagen"

'Create dictionary for addresses'
Set dic = CreateObject("Scripting.Dictionary")

'Split line into array'
aAddressParts = Split(sLine, ",") 

'Remove the first element of the array'
sValues = Mid(sLine, InStr(sLine, ",")+1)
aValues = Split(sValues, ",")

'Add new entry into dictionary'
dic.Add aAddressParts(0), aValues

'Usage'
MsgBox "Address for Copenhagen: " & vbNewLine & _
    Join(dic("Copenhagen"), "," & vbNewLine)

Спасибо, Maciej

1 голос
/ 16 августа 2010

Вы можете хранить адреса в одной строке и использовать специальный символ, например подчеркивание, для обозначения разрыва строки.Когда вы читаете адрес, вам просто нужно заменить специальный символ разрывом строки.

[Лондон]
Адрес = "Почтовый ящик 3245_58348 Лондон"

[Копенгаген]
Address = "Postbox 2455_5478347 Copenhagen"

Это также позволяет хранить адреса с большим количеством строк или без строки почтового ящика.По моему опыту, информация типа "наши адреса всегда имеют ровно две строки, а первая - всегда почтовый ящик" очень часто неверна ...

0 голосов
/ 05 июня 2013

Я использую небольшой исполняемый файл, который запускает собственный API для этого: GetPrivateProfileString и WritePrivateProfileString .

Исполняемый файл называется так:

Set sh = CreateObject("WScript.Shell")
Set exec = sh.Exec("ini.exe get %APPDATA%\sth\file.ini ""Section name"" key")
sFirma1 = exec.StdOut.ReadLine
Call sh.Run("ini.exe set %APPDATA%\sth\file.ini ""Section name"" key set_value", 0)

См. Также Запуск командной строки без вывода сообщений с VbScript и получение вывода? .

Это код исполняемого файла:

#include <stdio.h>
#include <windows.h>

void usage()
{
  puts("ini <get>/<set> <file> <section> <key> <value>");
  exit(1);
}

int main(int cArg, char **aszArg)
{
  int iFile = 2;
  int iSection = 3;
  int iKey = 4;
  int iValue = 5;
  if (cArg < 5) usage();
  if (strcmp(aszArg[1], "get") != 0 && strcmp(aszArg[1], "set") != 0) usage();
  if (strcmp(aszArg[1], "set") == 0 && cArg < iValue + 1) usage();
  if (strcmp(aszArg[1], "set") == 0) {
    if (!WritePrivateProfileString(aszArg[iSection], aszArg[iKey],
                                   aszArg[iValue], aszArg[iFile]))
      puts("Failure in WriteProfileString.");
  } else {
    char buf[1000];
    buf[0] = 0;
    GetPrivateProfileString(
      aszArg[iSection], aszArg[iKey], "", buf, 999, aszArg[iFile]);
    puts(buf);
  }
  return 0;
}

Вам необходимо скомпилировать егоиспользуя компилятор переменного тока для Windows.Я сделал это с помощью gcc, но также должен работать бесплатный компилятор из ms.Если эта страница с 32-разрядным исполняемым файлом все еще доступна, вы можете попробовать ее, но под свою ответственность.Хакеры уже посетили мой сайт однажды.

...