日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

How to convert a String to Stream

系統 2013 0
How do you convert a String object to Stream (type) object?

I know it is more common to do the conversion in the other direction, but for me it is definitely the other way.

I have a web service input parameter of type string.? This parameter is actually an xml document payload. Why this is so is a long story.

Anyway, I need to validate it.? I've written xml validation code in the past.? The one real stumbling block here isd this data type conversion.

I'm at a bit of a loss how to do this.? Ultimately I need to get the data into an XmlReader object coupled with the XmlReadersettings object (this is a .net 2.0 asp.net app).? Looking at the object model for various System.XML namespace objects this does not appear to be a straightforward task.

Short of writing the string to disk and then opening it up with a FileStream object,there's got to be a better way.? Anyone have a better idea?

Thanks!
Mr Bungle
Tuesday, July 18, 2006
?
?
Implement a class derived from stream, i.e. declare a StringStream class, use your string to construct it, and implement the various abstract methods declared in Stream such as Read and CanWrite.
Christopher Wells
Tuesday, July 18, 2006
?
?
Use the StringReader class, e.g.

string xmlText = ... your XML ...;
XmlReaderSettings settings = ... your settings ...;

StringReader stringReader = new StringReader(xmlText);
XmlTextReader xmlReader = XmlReader.Create(stringReader, settings);
...
Joe
Wednesday, July 19, 2006
?
?
There is also the MemoryStream object, convert your string into an array of bytes and write directly into the memorystream.

MemoryStream memStream = new MemoryStream();
byte [] data = Encoding.Unicode.GetBytes(theString);
memStream.Write(data, 0, data.Length);
Foxedup
Wednesday, July 19, 2006
?
?
The System.IO.StringReader object worked like a charm and just required a single line of additional code.? What a relief! Thanks for all the helpful replies.
Mr Bungle
Wednesday, July 19, 2006
?
?

This topic is archived. No further replies will be accepted.

How to convert a String to Stream


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 汉沽区| 汝州市| 济源市| 东乌珠穆沁旗| 剑川县| 阳江市| 河池市| 临洮县| 霍邱县| 顺平县| 云南省| 古田县| 车险| 铁岭县| 绥阳县| 孙吴县| 平南县| 大名县| 灵丘县| 曲阜市| 荔波县| 社会| 永川市| 来凤县| 松潘县| 安徽省| 司法| 和龙市| 柳州市| 亳州市| 正镶白旗| 马关县| 两当县| 和政县| 峡江县| 双峰县| 乡宁县| 措勤县| 阳春市| 筠连县| 永德县|