VB.NET текст Read Certain в текстовом файле

Существует несколько методов, таких как использование процессора ID для генерации "ключа активации".

нижняя строка - то, что, если кто-то хочет его плохо достаточно - они перепроектируют любую защиту, которую Вы имеете.

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

Удачи!

5
задан lab12 13 December 2009 в 18:07
поделиться

6 ответов

Вот небольшой фрагмент кода, который после нажатия кнопки:

  1. принимает входной файл (в данном случае я создал файл под названием «test.ini»)
  2. считайте значения в виде отдельных строк
  3. выполните поиск, используя регулярные выражения, чтобы увидеть, содержит ли он какие-либо параметры «ACC =» или «PASS =»
  4. , затем запишите их в консоль

вот код:

Imports System.IO
Imports System.Text.RegularExpressions

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim strFile As String = "Test.INI"
    Dim sr As New StreamReader(strFile)
    Dim InputString As String

    While sr.Peek <> -1
        InputString = sr.ReadLine()
        checkIfContains(InputString)
        InputString = String.Empty
    End While
    sr.Close()
End Sub

Private Sub checkIfContains(ByVal inputString As String)
    Dim outputFile As String = "testOutput.txt"
    Dim m As Match
    Dim m2 As Match
    Dim itemPattern As String = "acc=(\S+)"
    Dim itemPattern2 As String = "pass=(\S+)"

    m = Regex.Match(inputString, itemPattern, _
                    RegexOptions.IgnoreCase Or RegexOptions.Compiled)
    m2 = Regex.Match(inputString, itemPattern2, _
                    RegexOptions.IgnoreCase Or RegexOptions.Compiled)
    Do While m.Success
        Console.WriteLine("Found account {0}", _
                          m.Groups(1), m.Groups(1).Index)
        m = m.NextMatch()
    Loop
    Do While m2.Success
        Console.WriteLine("Found password {0}", _
                          m2.Groups(1), m2.Groups(1).Index)
        m2 = m2.NextMatch()
    Loop
End Sub

End Class
5
ответ дан 13 December 2019 в 19:28
поделиться

Думали ли вы о том, чтобы вместо этого фреймворк справился с этим?

Если вы добавите запись на вкладке настроек свойств проекта с именем acc, строкой типа, пользователем области действия (или приложением , в зависимости от требований) и передачи значения, вы можете использовать функцию System.Configuration.ApplicationSettingsBase для решения этой проблемы.

 Private _settings As My.MySettings
   Private _acc as String
   Private _pass as String
   Public ReadOnly Property Settings() As System.Configuration.ApplicationSettingsBase
        Get
            If _settings Is Nothing Then
                _settings = New My.MySettings
            End If
            Return _settings
        End Get
    End Property
    Private Sub SetSettings()
        Settings.SettingsKey = Me.Name
        Dim theSettings As My.MySettings
        theSettings = DirectCast(Settings, My.MySettings)
        theSettings.acc=_acc
        theSettings.pass=_pass        
        Settings.Save()
    End Sub
    Private Sub GetSettings()
        Settings.SettingsKey = Me.Name
        Dim theSettings As My.MySettings
        theSettings = DirectCast(Settings, My.MySettings)
        _acc=theSettings.acc
        _pass=theSettings.pass
    End Sub

Вызов GetSettings в любом нужном вам событии загрузки и SetSettings в событиях закрытия

Это создаст запись в файле application.exe.config либо в вашем локальном каталоге settings \ apps \ 2.0 \ etc и т.д., либо в вашем перемещаемый, или, если это развертывание clickonce, в каталоге данных clickonce. Это будет выглядеть следующим образом: -

<userSettings>
        <MyTestApp.My.MySettings>
            <setting name="acc" serializeAs="String">
                <value>blah</value>
            </setting>
        <setting name="pass" serializeAs="String">
                <value>hello</value>
        </setting>
    </MyTestApp.My.MySettings>
   </userSettings>
0
ответ дан 13 December 2019 в 19:28
поделиться

Have a look at this article

Reading and writing text files with VB.NET

Wile reading the file line by line, you can use String.Split Method with the splitter being "=", to split the string into param name, and param value.

3
ответ дан 13 December 2019 в 19:28
поделиться

Looks like you've got an INI file of some kind... The best way to read these is using the *PrivateProfile* functions of the windows API, which means you can actually have a proper full INI file quite easily for anything you need. There is a wrapper class here you may like to use.

Microsoft recommends that you use the registry to store this sort of information though, and discourages use of INI files.

If you wish to just use a file manually with the syntax you have, it is a simple case of splitting the string on '=' and put the results into a Dictionary. Remember to handle cases where the data was not found in the file and you need a default/error. In modern times though, XML is becoming a lot more popular for data text files, and there are lots of libraries to deal with loading from these.

2
ответ дан 13 December 2019 в 19:28
поделиться

My suggestion: you use XML. The .NET framework has a lot of good XML tools, if you're willing to make the transition to put all the text files into XML, it'll make life a lot easier.

Not what you're looking for, probably, but it's a cleaner solution than anything you could do with plain text (outside of developing your own parser or using a lower level API).

1
ответ дан 13 December 2019 в 19:28
поделиться

You can't really selectively read a certain bit of information in the file exclusively. You'll have to scan each line of the file and do a search for the string "pass=" at the beginning of the line. I don't know VB but look up these topics:

  1. File readers (espically ones that can read one line at a time)
  2. String tokenizers/splitting (as Astander mentioned)
  3. File reading examples
0
ответ дан 13 December 2019 в 19:28
поделиться
Другие вопросы по тегам:

Похожие вопросы: