zoukankan      html  css  js  c++  java
  • [IOS+PHP Jason格式的发送与解析]

    服务器端PHP文件connect.php:

    <?php
        $q = mysql_connect("localhost","root","");
        if(!$q)
        {
           die('Could not connect:  ' . mysql_error());
        }
        mysql_query("set names utf8"); //以utf8读取数据
    
        mysql_select_db("jasontest",$q); //数据库
    
        $sql = "select * from userinfo";
        $query = mysql_query($sql);
        while($row = mysql_fetch_array($query)){
                        $com= $row;
                    }
        echo json_encode($com);
    ?>

    IOS段解析:

    - (IBAction)clickbutton:(id)sender {
        [NSThread detachNewThreadSelector:@selector(getjasonstring) toTarget:self withObject:nil];
    }
    -(void)getjasonstring{
        NSError *error;
        //加载一个NSURL对象
        NSURLRequest *request2 = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost/jasontest/connect.php"]];
        //将请求的url数据放到NSData对象中
        NSData *response = [NSURLConnection sendSynchronousRequest:request2 returningResponse:nil error:nil];
        //IOS5自带解析类NSJSONSerialization从response中解析出数据放到字典中
        NSDictionary *jasonDic = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];
    
        NSLog(@"person's userid is %@",[jasonDic objectForKey:@"userid"]);
        NSLog(@"person's name is %@",[jasonDic objectForKey:@"name"]);
        NSLog(@"person's password is %@",[jasonDic objectForKey:@"password"]);
        NSLog(@"person's phoneNo is %@",[jasonDic objectForKey:@"phoneNo"]);
        
    }

    ___________________________________________________
    专注iOS/前端开发,广泛涉猎多种平台和技术,欢迎交流
    可以在微博关注并@沈z伟
  • 相关阅读:
    去中心化存储的QoS是什么?
    谈如何真正地做好去中心存储?
    Kowala协议:一组分布式,自我调节,资产跟踪特性的加密货币(二)
    MySQL主从备份
    Java面试总结-基础篇2
    Java面试总结-基础篇1
    锁定网络问题的方法
    我是如何在实际项目中解决MySQL性能问题
    serialVersionUID的作用
    Windows和Linux下如何自动备份MySQL
  • 原文地址:https://www.cnblogs.com/rayshen/p/3957022.html
Copyright © 2011-2022 走看看