mirror of
https://e.coding.net/circlecloud/VBFunctionBas.git
synced 2024-11-23 02:18:50 +00:00
简化Json工具...
Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
parent
b4d8728830
commit
41975484fb
@ -4,18 +4,13 @@ Option Explicit
|
||||
Public Function CreateJson(JsonFile As String) As Object
|
||||
Dim JsonLine As String
|
||||
Dim S As String
|
||||
Dim js
|
||||
Open JsonFile For Input As 1
|
||||
Do Until EOF(1)
|
||||
Line Input #1, S
|
||||
JsonLine = JsonLine & S
|
||||
Loop
|
||||
Close #1
|
||||
Set js = CreateObject("ScriptControl")
|
||||
js.Language = "JScript"
|
||||
js.AddCode "function j(s) { return eval('(' + s + ')'); }"
|
||||
Set CreateJson = js.Run("j", JsonLine)
|
||||
Set js = Nothing
|
||||
Set CreateJson = StrToJson(JsonLine)
|
||||
End Function
|
||||
|
||||
Public Function StrToJson(ByVal jsonstring As String) As Object
|
||||
|
Loading…
Reference in New Issue
Block a user