zoukankan      html  css  js  c++  java
  • [数据库笔记]XML/JSON

    首先我用一个自制图表示这节会涉及的几个概念:

    AJAX是现在网页普遍都采用的局部刷新网页技术。在AJAX之前,每当用户向服务器发送请求,哪怕只是需要更新一点点的局部内容,服务器都会将整个页面进行刷新。

                         

    JSON: 一种数据交换格式

     

    JSON值

    • 数字
    • 字符串: " "
    • 布尔值: true/false
    • 数组: [] 
    • 对象: {}
    • null

    几乎所有编程语言都有解析JSON的库

    • 在JavaScript中使用JSON
    var myObject= eval('(' + myJSONtext+ ')');
    var myObject= JSON.parse(myJSONtext);
    • 在XmlHttpRequest使用JSON
    xmlhttp.setRequestHeader(
    'Content-type',
    'application/x-www-form-urlencoded;charset=UTF-8;'
    );
    xmlhttp.send('jsondata=' + escape(myJSONText));  // 将JSON文件传给server
    • 在java中使用JSON
    import org.json.simple.JSONObject;
    import org.json.simple.JSONArray;
    ……
    public class MyServletextends HttpServlet{
    public void doGet(HttpServletRequestrequest,HttpServletResponseresponse) throws ServletException, IOException
    {
        response.setContentType("text/html");
        PrintWriterout = response.getWriter();
        String feedURLString= request.getParameter("feedURL");
        String script ="";
        JSONObjectobj= new JSONObject();
        JSONArrayarry= new JSONArray();
    ……
    }

                                       

    XML: Extensible Markup Language 一种数据交换格式

                                           |             |___ 不是programming language, 因为不能compute 以及实现算法,只能save data

                                           |____ markup 用label来保证了both human-readable and machine-readable

    转化为XML Data Model: 

  • 相关阅读:
    表格转换,多行聚集成列,长列转换成多行
    记第一次写数据库文章总结
    免疫 TCR BCR 病毒滴度
    Genome-wide Study Identifies Association between HLA-B*55:01 and Self-Reported Penicillin Allergy
    LD plot
    beta p-value SE
    蛋白截断变异(protein-truncating variant,PTV)
    The human noncoding genome defined by genetic diversity
    Fst计算
    LD Score regression文章 ;confounding
  • 原文地址:https://www.cnblogs.com/liuliu5151/p/10982900.html
Copyright © 2011-2022 走看看