数控编程技术之IOS编程小技巧
时间:2014-07-25 阅读:573
很多朋友学习ios网络编程,都会觉得自己在进行ios网络编程操作的时候会出现不少问题。而而这些问题的根源主要就是我们在进行ios网络编程的时候没有注意掌握一些基本的小技巧。那么关于ios网络编程的小技巧到底都有哪些呢?
private void Go()
{
HttpWebRequest req = CreatHttp();
var res = req.GetResponse() asHttpWebResponse;
Stream st = res.GetResponseStream();//读取Response
StreamReader sr = newStreamReader(st);
string result =sr.ReadToEnd().ToString();
try
{
textBox1.Text = result.Split(':')[1].Split('<')[0];
public static string Connect(stringUserS,string PwdS)
{
string arg = @"rasdial.exe 宽带连接" + " " + UserS + " " + PwdS;
return InvokeCmd(arg);
}
public static string Disconnect()
{
string arg =string.Format("rasdial \"{0}\" /disconnect", "宽带连接");
return InvokeCmd(arg);
}
private static string InvokeCmd(stringcmdArgs)
{
string Tstr = "";
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute =false;
在项目中添加Microsoft.Practices.Unity.dll和Microsoft.Practices.Unity.Configuration.dll的引用