我正在尝试使用以下代码将字符串读入json:
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
string final =" quoteDataObj : [{"symbol":"@CL.1","symbolType":"symbol","code":0,"name":"WTI Crude Oil (Sep\u002715)","shortName":"OIL","last":"42.14","exchange":"New York Mercantile Exchange","so
urce":"","open":"42.23","high":"42.26","low":"41.35","change":"-0.09","currencyCode":"USD","timeZone":"EDT","volume":"6526","provider":"CNBC Quote Cache","altSymbol":"CL/U5","curmk
tstatus":"REG_MKT","realTime":"false","assetType":"DERIVATIVE","noStreaming":"false","encodedSymbol":"%40CL.1"}]";
通过电话
将其读入Json [Newtonsoft]时dynamic dynObj = JsonConvert.DeserializeObject(final);
我收到以下异常
{Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: q. Path '', line 0, position 0.
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.JsonTextReader.ReadInternal()
at Newtonsoft.Json.JsonTextReader.Read()
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ReadForType(JsonReader reader, JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value)
at ConsoleApplication276.Program.GetCNBCQuote(String symbol) in c:\Users\idf\Documents\Visual Studio 2012\Projects\ScreenScrape\ScreenScrape\Program.cs:line 519
at ConsoleApplication276.Program.Main(String[] args) in c:\Users\idf\Documents\Visual Studio 2012\Projects\ScreenScrape\ScreenScrape\Program.cs:line 535
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()}
有趣的是,在python中,这可以解决问题
import json
clurl = 'http://data.cnbc.com/quotes/@CL.1'
def wgetUrl(target):
try:
req = urllib2.Request(target)
req.add_header('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3 Gecko/2008092417 Firefox/3.0.3')
response = urllib2.urlopen(req)
outtxt = response.read()
response.close()
except:
return ''
return outtxt
def CLLast():
content = wgetUrl(clurl)
matches = re.findall(r'quoteDataObj\s\=\s(\[.+\])', content)
if len(matches) > 0:
list = json.loads(matches[0])
python_dict = list[0]
tupleQuote = (iCL, 0, float(python_dict['last']), 0, float(python_dict['last']), 0, millis)
callback(sCL, tupleQuote)
编辑1
字符串看起来像这个原始
[{"symbol":"@CL.1","symbolType":"symbol","code":0,"name":"WTI Crude Oil (Sep\u002715)","shortName":"OIL","last":"42.10","exchange":"New York Mercantile Exchange","source":"","open"
:"42.23","high":"42.26","low":"41.35","change":"-0.13","currencyCode":"USD","timeZone":"EDT","volume":"7702","provider":"CNBC Quote Cache","altSymbol":"CL/U5","curmktstatus":"REG_M
KT","realTime":"false","assetType":"DERIVATIVE","noStreaming":"false","encodedSymbol":"%40CL.1"}]
然后我用这段代码替换它
final = final.Replace('"', '\'');
所以它看起来像这个
[{'symbol':'@CL.1','symbolType':'symbol','code':0,'name':'WTI Crude Oil (Sep\u002715)','shortName':'OIL','last':'42.10','exchange':'New York Mercantile Exchange','source':'','open'
:'42.23','high':'42.26','low':'41.35','change':'-0.13','currencyCode':'USD','timeZone':'EDT','volume':'7832','provider':'CNBC Quote Cache','altSymbol':'CL/U5','curmktstatus':'REG_M
KT','realTime':'false','assetType':'DERIVATIVE','noStreaming':'false','encodedSymbol':'%40CL.1'}]
我靠近了,因为现在异常是
{Newtonsoft.Json.JsonReaderException: Additional text encountered after finished reading JSON content: C. Path '', line 2, position 4.
at Newtonsoft.Json.JsonTextReader.ReadInternal()
at Newtonsoft.Json.JsonTextReader.Read()
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value)
at ConsoleApplication276.Program.GetCNBCQuote(String symbol) in c:\Users\idf\Documents\Visual Studio 2012\Projects\ScreenScrape\ScreenScrape\Program.cs:line 586
at ConsoleApplication276.Program.Main(String[] args) in c:\Users\idf\Documents\Visual Studio 2012\Projects\ScreenScrape\ScreenScrape\Program.cs:line 602
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()}
编辑2
我认为杰森很擅长这个。将字符串拆分为','可能会更容易,然后通过再次拆分'将其读入字典:'
编辑3
代码看起来像这样。通过" CL.1"作为符号。
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Linq;
using System.Windows.Forms;
using System.Net;
using System.Globalization;
using System.Reactive;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
using System.Reactive.PlatformServices;
using System.Reactive.Linq;
using System.Xml;
using System.Runtime.Serialization;
using HtmlAgilityPack;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
public class Program
{
// navigate WebBrowser to the list of urls in a loop
public static string DoWorkAsync(string args)
{
Console.WriteLine("Start working.");
using (WebClient wb = new WebClient())
{
wb.Headers["User-Agent"] =
"User-Agent" + "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3 Gecko/2008092417 Firefox/3.0.3";
// Download data.
string html = wb.DownloadString(args);
//Console.WriteLine(html);
Console.WriteLine("End working.");
return html;
}
}
[DataContract]
public class CNBC
{
[DataMember(Name = "symbol")]
public string Symbol { get; set; }
[DataMember(Name = "symbolType")]
public string SymbolType { get; set; }
[DataMember(Name = "code")]
public int Code { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
[DataMember(Name = "shortName")]
public string ShortName { get; set; }
[DataMember(Name = "last")]
public string Last { get; set; }
[DataMember(Name = "exchange")]
public string Exchange { get; set; }
[DataMember(Name = "source")]
public string Source { get; set; }
[DataMember(Name = "open")]
public string Open { get; set; }
[DataMember(Name = "high")]
public string High { get; set; }
[DataMember(Name = "low")]
public string Low { get; set; }
[DataMember(Name = "change")]
public string Change { get; set; }
[DataMember(Name = "currencyCode")]
public string CurrencyCode { get; set; }
[DataMember(Name = "timeZone")]
public string TimeZone { get; set; }
[DataMember(Name = "volume")]
public string Volume { get; set; }
[DataMember(Name = "provider")]
public string Provider { get; set; }
[DataMember(Name = "altSymbol")]
public string AltSymbol { get; set; }
[DataMember(Name = "curmktstatus")]
public string Curmktstatus { get; set; }
[DataMember(Name = "realTime")]
public string RealTime { get; set; }
[DataMember(Name = "assetType")]
public string AssetType { get; set; }
[DataMember(Name = "noStreaming")]
public string NoStreaming { get; set; }
[DataMember(Name = "encodedSymbol")]
public string EncodedSymbol { get; set; }
}
public static string GetCNBCQuote(string symbol)
{
string url = "http://data.cnbc.com/quotes/@" + symbol;
string html = DoWorkAsync(url);
string regPattern = @"quoteDataObj\s\=\s(\[.+\])";
//Regex re = new Regex(regPattern);
Match match = Regex.Match(html, regPattern);
if (match.Success)
{
string subs = html.Substring(match.Index);
int startIndex = subs.IndexOf('[');
int endIndex = subs.IndexOf(']');
string final = subs.Substring(startIndex - 1, endIndex + 1);
final = final.TrimEnd();
Console.WriteLine(final);
Console.WriteLine();
final = final.Replace('"', '\'');
Console.WriteLine(final);
//This throws exception
dynamic dynObj = JsonConvert.DeserializeObject<List<CNBC>>(final);
foreach (var data in dynObj.quizlist)
{
Console.WriteLine(data);
}
}
}
答案 0 :(得分:2)
以这种方式使用
df[match(best$retailer, all$retailer, nomatch=0),]
编辑:
在您的修改中,您使用var json = "[{\"symbol\":\"@CL.1\",\"symbolType\":\"symbol\",\"code\":0,\"name\":\"WTI Crude Oil(Sep\u002715)\",\"shortName\":\"OIL\",\"last\":\"42.14\",\"exchange\":\"New York Mercantile Exchange\","+
"\"source\":\"\",\"open\":\"42.23\",\"high\":\"42.26\",\"low\":\"41.35\",\"change\":\" - 0.09\",\"currencyCode\":\"USD\",\"timeZone\":\"EDT\",\"volume\":\"6526\","+
"\"provider\":\"CNBC Quote Cache\",\"altSymbol\":\"CL / U5\",\"curmktstatus\":\"REG_MKT\",\"realTime\":\"false\",\"assetType\":\"DERIVATIVE\",\"noStreaming\":\"false\",\"encodedSymbol\":\" % 40CL.1\"}]";
var foo = JsonConvert.DeserializeObject<List<Foo>>(json);
public class Foo
{
[DataMember(Name = "symbol")]
public string Symbol { get; set; }
[DataMember(Name = "symbolType")]
public string SymbolType { get; set; }
[DataMember(Name = "code")]
public int Code { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
[DataMember(Name = "shortName")]
public string ShortName { get; set; }
[DataMember(Name = "last")]
public string Last { get; set; }
[DataMember(Name = "exchange")]
public string Exchange { get; set; }
[DataMember(Name = "source")]
public string Source { get; set; }
[DataMember(Name = "open")]
public string Open { get; set; }
[DataMember(Name = "high")]
public string High { get; set; }
[DataMember(Name = "low")]
public string Low { get; set; }
[DataMember(Name = "change")]
public string Change { get; set; }
[DataMember(Name = "currencyCode")]
public string CurrencyCode { get; set; }
[DataMember(Name = "timeZone")]
public string TimeZone { get; set; }
[DataMember(Name = "volume")]
public string Volume { get; set; }
[DataMember(Name = "provider")]
public string Provider { get; set; }
[DataMember(Name = "altSymbol")]
public string AltSymbol { get; set; }
[DataMember(Name = "curmktstatus")]
public string Curmktstatus { get; set; }
[DataMember(Name = "realTime")]
public string RealTime { get; set; }
[DataMember(Name = "assetType")]
public string AssetType { get; set; }
[DataMember(Name = "noStreaming")]
public string NoStreaming { get; set; }
[DataMember(Name = "encodedSymbol")]
public string EncodedSymbol { get; set; }
}
提供新字符串。
现在你可以尝试
'
答案 1 :(得分:1)
您可以将"
替换为'
。样品:
string final ="[
{
'symbol': '@CL.1',
'symbolType': 'symbol',
'code': 0,
'name': 'WTI Crude Oil (Sep'15)',
'shortName': 'OIL',
'last': '42.14',
'exchange': 'New York Mercantile Exchange',
'source': '',
'open': '42.23',
'high': '42.26',
'low': '41.35',
'change': '-0.09',
'currencyCode': 'USD',
'timeZone': 'EDT',
'volume': '6526',
'provider': 'CNBC Quote Cache',
'altSymbol': 'CL/U5',
'curmktstatus': 'REG_MKT',
'realTime': 'false',
'assetType': 'DERIVATIVE',
'noStreaming': 'false',
'encodedSymbol': '%40CL.1'
}
]";
dynamic foo = JsonConvert.DeserializeObject<List<Foo>>(json);