XML文件格式

<?xml version="1.0" encoding="utf-8"?>
<posts>
  <row Id="4" PostTypeId="1" AcceptedAnswerId="7" CreationDate="2008-07-31T21:42:52.667" Score="735" ViewCount="59537" Body="&lt;p&gt;I want to use a &lt;code&gt;Track-Bar&lt;/code&gt; to change a &lt;code&gt;Form&lt;/code&gt;'s opacity.&lt;/p&gt;&#xA;&lt;p&gt;This is my code:&lt;/p&gt;&#xA;&lt;pre class=&quot;lang-cs prettyprint-override&quot;&gt;&lt;code&gt;decimal trans = trackBar1.Value / 5000;&#xA;this.Opacity = trans;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;When I build the application, it gives the following error:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;pre class=&quot;lang-none prettyprint-override&quot;&gt;&lt;code&gt;Cannot implicitly convert type decimal to double&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;I have tried using &lt;code&gt;trans&lt;/code&gt; and &lt;code&gt;double&lt;/code&gt;, but then the &lt;code&gt;Control&lt;/code&gt; doesn't work. This code worked fine in a past VB.NET project.&lt;/p&gt;&#xA;" OwnerUserId="8" LastEditorUserId="3072350" LastEditorDisplayName="Rich B" LastEditDate="2021-02-26T03:31:15.027" LastActivityDate="2021-02-26T03:31:15.027" Title="How to convert a Decimal to a Double in C#?" Tags="&lt;c#&gt;&lt;floating-point&gt;&lt;type-conversion&gt;&lt;double&gt;&lt;decimal&gt;" AnswerCount="14" CommentCount="5" FavoriteCount="57" CommunityOwnedDate="2012-10-31T16:42:47.213" ContentLicense="CC BY-SA 4.0" />
  <row Id="6" PostTypeId="1" AcceptedAnswerId="31" CreationDate="2008-07-31T22:08:08.620" Score="308" ViewCount="21813" Body="&lt;p&gt;I have an absolutely positioned &lt;code&gt;div&lt;/code&gt; containing several children, one of which is a relatively positioned &lt;code&gt;div&lt;/code&gt;. When I use a &lt;code&gt;percentage-based width&lt;/code&gt; on the child &lt;code&gt;div&lt;/code&gt;, it collapses to &lt;code&gt;0 width&lt;/code&gt; on IE7, but not on Firefox or Safari.&lt;/p&gt;&#xA;&lt;p&gt;If I use &lt;code&gt;pixel width&lt;/code&gt;, it works. If the parent is relatively positioned, the percentage width on the child works.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Is there something I'm missing here?&lt;/li&gt;&#xA;&lt;li&gt;Is there an easy fix for this besides the &lt;code&gt;pixel-based width&lt;/code&gt; on the child?&lt;/li&gt;&#xA;&lt;li&gt;Is there an area of the CSS specification that covers this?&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;" OwnerUserId="9" LastEditorUserId="9134576" LastEditorDisplayName="user14723686" LastEditDate="2021-01-29T18:46:45.963" LastActivityDate="2021-01-29T18:46:45.963" Title="Why did the width collapse in the percentage width child element in an absolutely positioned parent on Internet Explorer 7?" Tags="&lt;html&gt;&lt;css&gt;&lt;internet-explorer-7&gt;" AnswerCount="7" CommentCount="1" FavoriteCount="12" ContentLicense="CC BY-SA 4.0" />
  <row Id="7" PostTypeId="2" ParentId="4" CreationDate="2008-07-31T22:17:57.883" Score="488" Body="&lt;p&gt;An explicit cast to &lt;code&gt;double&lt;/code&gt; like this isn't necessary:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;double trans = (double) trackBar1.Value / 5000.0;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Identifying the constant as &lt;code&gt;5000.0&lt;/code&gt; (or as &lt;code&gt;5000d&lt;/code&gt;) is sufficient:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;double trans = trackBar1.Value / 5000.0;&#xA;double trans = trackBar1.Value / 5000d;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;" OwnerUserId="9" LastEditorUserId="5496973" LastEditDate="2019-10-21T14:03:54.607" LastActivityDate="2019-10-21T14:03:54.607" CommentCount="0" ContentLicense="CC BY-SA 4.0" />
  <row Id="9" PostTypeId="1" AcceptedAnswerId="1404" CreationDate="2008-07-31T23:40:59.743" Score="2046" ViewCount="690121" Body="&lt;p&gt;Given a &lt;code&gt;DateTime&lt;/code&gt; representing a person's birthday, how do I calculate their age in years?&lt;/p&gt;&#xA;" OwnerUserId="1" LastEditorUserId="6537157" LastEditorDisplayName="Rich B" LastEditDate="2021-01-05T17:33:32.393" LastActivityDate="2021-08-14T13:35:38.050" Title="How do I calculate someone's age based on a DateTime type birthday?" Tags="&lt;c#&gt;&lt;.net&gt;&lt;datetime&gt;" AnswerCount="65" CommentCount="9" FavoriteCount="477" CommunityOwnedDate="2011-08-16T19:40:43.080" ContentLicense="CC BY-SA 4.0" />
  <row Id="11" PostTypeId="1" AcceptedAnswerId="1248" CreationDate="2008-07-31T23:55:37.967" Score="1589" ViewCount="179860" Body="&lt;p&gt;Given a specific &lt;code&gt;DateTime&lt;/code&gt; value, how do I display relative time, like:&lt;/p&gt;&#xA;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;2 hours ago&lt;/li&gt;&#xA;&lt;li&gt;3 days ago&lt;/li&gt;&#xA;&lt;li&gt;a month ago&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;" OwnerUserId="1" LastEditorUserId="6479704" LastEditorDisplayName="user2370523" LastEditDate="2017-06-04T15:51:19.780" LastActivityDate="2021-09-01T21:49:09.617" Title="Calculate relative time in C#" Tags="&lt;c#&gt;&lt;datetime&gt;&lt;time&gt;&lt;datediff&gt;&lt;relative-time-span&gt;" AnswerCount="40" CommentCount="3" FavoriteCount="550" CommunityOwnedDate="2009-09-04T13:15:59.820" ContentLicense="CC BY-SA 3.0" />
  <row Id="12" PostTypeId="2" ParentId="11" CreationDate="2008-07-31T23:56:41.303" Score="336" Body="&lt;p&gt;Here's how I do it&lt;/p&gt;&#xA;&#xA;&lt;pre class=&quot;lang-csharp prettyprint-override&quot;&gt;&lt;code&gt;var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);&#xA;double delta = Math.Abs(ts.TotalSeconds);&#xA;&#xA;if (delta &amp;lt; 60)&#xA;{&#xA;  return ts.Seconds == 1 ? &quot;one second ago&quot; : ts.Seconds + &quot; seconds ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 60 * 2)&#xA;{&#xA;  return &quot;a minute ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 45 * 60)&#xA;{&#xA;  return ts.Minutes + &quot; minutes ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 90 * 60)&#xA;{&#xA;  return &quot;an hour ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 24 * 60 * 60)&#xA;{&#xA;  return ts.Hours + &quot; hours ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 48 * 60 * 60)&#xA;{&#xA;  return &quot;yesterday&quot;;&#xA;}&#xA;if (delta &amp;lt; 30 * 24 * 60 * 60)&#xA;{&#xA;  return ts.Days + &quot; days ago&quot;;&#xA;}&#xA;if (delta &amp;lt; 12 * 30 * 24 * 60 * 60)&#xA;{&#xA;  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));&#xA;  return months &amp;lt;= 1 ? &quot;one month ago&quot; : months + &quot; months ago&quot;;&#xA;}&#xA;int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));&#xA;return years &amp;lt;= 1 ? &quot;one year ago&quot; : years + &quot; years ago&quot;;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Suggestions? Comments? Ways to improve this algorithm?&lt;/p&gt;&#xA;" OwnerUserId="1" LastEditorUserId="238419" LastEditorDisplayName="GateKiller" LastEditDate="2020-06-13T10:30:44.397" LastActivityDate="2020-06-13T10:30:44.397" CommentCount="10" CommunityOwnedDate="2009-09-04T13:15:59.820" ContentLicense="CC BY-SA 4.0" />
  <row Id="13" PostTypeId="1" CreationDate="2008-08-01T00:42:38.903" Score="661" ViewCount="233241" Body="&lt;p&gt;Is there a standard way for a web server to be able to determine a user's timezone within a web page? &lt;/p&gt;&#xA;&#xA;&lt;p&gt;Perhaps from an HTTP header or part of the &lt;code&gt;user-agent&lt;/code&gt; string?&lt;/p&gt;&#xA;" OwnerUserId="9" LastEditorUserId="584192" LastEditorDisplayName="Rich B" LastEditDate="2020-12-03T03:37:56.313" LastActivityDate="2021-04-13T09:46:08.563" Title="Determine a user's timezone" Tags="&lt;html&gt;&lt;browser&gt;&lt;timezone&gt;&lt;user-agent&gt;&lt;timezone-offset&gt;" AnswerCount="26" CommentCount="9" FavoriteCount="157" ContentLicense="CC BY-SA 4.0" />
  <row Id="14" PostTypeId="1" CreationDate="2008-08-01T00:59:11.177" Score="459" ViewCount="153984" Body="&lt;p&gt;What is the difference between &lt;a href=&quot;<http://msdn.microsoft.com/en-us/library/9a6a2sxy.aspx&quot>; rel=&quot;noreferrer&quot;&gt;&lt;code&gt;Math.Floor()&lt;/code&gt;&lt;/a&gt; and &lt;a href=&quot;<http://msdn.microsoft.com/en-us/library/system.math.truncate.aspx&quot>; rel=&quot;noreferrer&quot;&gt;&lt;code&gt;Math.Truncate()&lt;/code&gt;&lt;/a&gt; in .NET?&lt;/p&gt;&#xA;" OwnerUserId="11" OwnerDisplayName="Anonymous User" LastEditorUserId="6495084" LastEditorDisplayName="Rich B" LastEditDate="2017-02-25T17:42:17.810" LastActivityDate="2021-04-22T05:49:24.453" Title="Difference between Math.Floor() and Math.Truncate()" Tags="&lt;.net&gt;&lt;math&gt;" AnswerCount="13" CommentCount="1" FavoriteCount="64" ContentLicense="CC BY-SA 3.0" />
  <row Id="16" PostTypeId="1" AcceptedAnswerId="12446" CreationDate="2008-08-01T04:59:33.643" Score="145" ViewCount="85904" Body="&lt;p&gt;How do you expose a LINQ query as an ASMX web service?&#xA;&lt;br&gt;&#xA;Usually, from the business tier, I can return a typed &lt;code&gt;DataSet&lt;/code&gt; or a &lt;code&gt;DataTable&lt;/code&gt; which can be serialized for transport over ASMX.&lt;/p&gt;&#xA;&lt;p&gt;How can I do the same for a LINQ query? &lt;br&gt;&#xA;Is there a way to populate a typed &lt;code&gt;DataSet&lt;/code&gt; or a &lt;code&gt;DataTable&lt;/code&gt; via a LINQ query?&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;public static MyDataTable CallMySproc()&#xA;{&#xA;    string conn = &amp;quot;...&amp;quot;;&#xA;&#xA;    MyDatabaseDataContext db = new MyDatabaseDataContext(conn);&#xA;    MyDataTable dt = new MyDataTable();&#xA;&#xA;    // execute a sproc via LINQ&#xA;    var query = from dr&#xA;                in db.MySproc().AsEnumerable&#xA;                select dr;&#xA;&#xA;    // copy LINQ query resultset into a DataTable -this does not work !    &#xA;    dt = query.CopyToDataTable();&#xA;   &#xA;    return dt;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;How could I put the result set of a LINQ query into a &lt;code&gt;DataSet&lt;/code&gt; or a &lt;code&gt;DataTable&lt;/code&gt;?&#xA;&lt;br&gt;&#xA;Alternatively, can the LINQ query be serializable so that I can expose it as an ASMX web service?&lt;/p&gt;&#xA;" OwnerUserId="2" LastEditorUserId="-1" LastEditorDisplayName="Chris Fournier" LastEditDate="2021-01-07T14:09:26.367" LastActivityDate="2021-01-07T14:09:26.367" Title="Filling a DataSet or a DataTable from a LINQ query result set" Tags="&lt;c#&gt;&lt;linq&gt;&lt;web-services&gt;&lt;.net-3.5&gt;" AnswerCount="7" CommentCount="0" FavoriteCount="14" ContentLicense="CC BY-SA 4.0" />
  <row Id="17" PostTypeId="1" AcceptedAnswerId="26" CreationDate="2008-08-01T05:09:55.993" Score="193" ViewCount="81531" Body="&lt;p&gt;How do I store binary data in &lt;a href=&quot;<http://en.wikipedia.org/wiki/MySQL&quot>; rel=&quot;noreferrer&quot;&gt;MySQL&lt;/a&gt;?&lt;/p&gt;&#xA;" OwnerUserId="2" LastEditorUserId="584192" LastEditDate="2020-12-03T03:37:51.763" LastActivityDate="2020-12-03T03:37:51.763" Title="Binary Data in MySQL" Tags="&lt;mysql&gt;&lt;database&gt;&lt;binary-data&gt;&lt;data-storage&gt;" AnswerCount="9" CommentCount="3" FavoriteCount="22" ClosedDate="2018-11-29T15:36:04.833" ContentLicense="CC BY-SA 3.0" />
  <row Id="18" PostTypeId="2" ParentId="17" CreationDate="2008-08-01T05:12:44.193" Score="58" Body="&lt;p&gt;For a table like this:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;CREATE TABLE binary_data (&#xA;    id INT(4) NOT NULL AUTO_INCREMENT PRIMARY KEY,&#xA;    description CHAR(50),&#xA;    bin_data LONGBLOB,&#xA;    filename CHAR(50),&#xA;    filesize CHAR(50),&#xA;    filetype CHAR(50)&#xA;);&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Here is a PHP example:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;&amp;lt;?php&#xA;    // store.php3 - by Florian Dittmer &amp;lt;[email protected]&amp;gt;&#xA;    // Example php script to demonstrate the storing of binary files into&#xA;    // an sql database. More information can be found at <http://www.phpbuilder.com/&#xA;?&amp;gt;&#xA;&#xA;&amp;lt;html&amp;gt;&#xA>;    &amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Store binary data into SQL Database&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&#xA;&#xA;    &amp;lt;body&amp;gt;&#xA;        &amp;lt;?php&#xA;            // Code that will be executed if the form has been submitted:&#xA;&#xA;            if ($submit) {&#xA;                // Connect to the database (you may have to adjust&#xA;                // the hostname, username or password).&#xA;&#xA;                mysql_connect(&quot;localhost&quot;, &quot;root&quot;, &quot;password&quot;);&#xA;                mysql_select_db(&quot;binary_data&quot;);&#xA;&#xA;                $data = mysql_real_escape_string(fread(fopen($form_data, &quot;r&quot;), filesize($form_data)));&#xA;&#xA;                $result = mysql_query(&quot;INSERT INTO binary_data (description, bin_data, filename, filesize, filetype) &quot;.&#xA;                                    &quot;VALUES ('$form_description', '$data', '$form_data_name', '$form_data_size', '$form_data_type')&quot;);&#xA;&#xA;                $id= mysql_insert_id();&#xA;                print &quot;&amp;lt;p&amp;gt;This file has the following Database ID: &amp;lt;b&amp;gt;$id&amp;lt;/b&amp;gt;&quot;;&#xA;&#xA;                mysql_close();&#xA;            } else {&#xA;&#xA;                // else show the form to submit new data:&#xA;        ?&amp;gt;&#xA;        &amp;lt;form method=&quot;post&quot; action=&quot;&amp;lt;?php echo $PHP_SELF; ?&amp;gt;&quot; enctype=&quot;multipart/form-data&quot;&amp;gt;&#xA;            File Description:&amp;lt;br&amp;gt;&#xA;            &amp;lt;input type=&quot;text&quot; name=&quot;form_description&quot;  size=&quot;40&quot;&amp;gt;&#xA;            &amp;lt;input type=&quot;hidden&quot; name=&quot;MAX_FILE_SIZE&quot; value=&quot;1000000&quot;&amp;gt;&#xA;            &amp;lt;br&amp;gt;File to upload/store in database:&amp;lt;br&amp;gt;&#xA;            &amp;lt;input type=&quot;file&quot; name=&quot;form_data&quot;  size=&quot;40&quot;&amp;gt;&#xA;            &amp;lt;p&amp;gt;&amp;lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;submit&quot;&amp;gt;&#xA;        &amp;lt;/form&amp;gt;&#xA;&#xA;        &amp;lt;?php&#xA;            }&#xA;        ?&amp;gt;&#xA;    &amp;lt;/body&amp;gt;&#xA;&amp;lt;/html&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;" OwnerDisplayName="phpguy" LastEditorUserId="126039" LastEditorDisplayName="Jeff Atwood" LastEditDate="2016-06-02T05:56:26.060" LastActivityDate="2016-06-02T05:56:26.060" CommentCount="2" ContentLicense="CC BY-SA 3.0" />
  <row Id="19" PostTypeId="1" AcceptedAnswerId="531" CreationDate="2008-08-01T05:21:22.257" Score="334" ViewCount="60265" Body="&lt;p&gt;I'm looking for the fastest way to obtain the value of π, as a personal challenge. More specifically, I'm using ways that don't involve using &lt;code&gt;#define&lt;/code&gt; constants like &lt;code&gt;M_PI&lt;/code&gt;, or hard-coding the number in.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable. I've included it as a baseline to compare against the other versions. In my tests, with built-ins, the &lt;code&gt;4 * atan(1)&lt;/code&gt; version is fastest on GCC 4.2, because it auto-folds the &lt;code&gt;atan(1)&lt;/code&gt; into a constant. With &lt;code&gt;-fno-builtin&lt;/code&gt; specified, the &lt;code&gt;atan2(0, -1)&lt;/code&gt; version is fastest.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;Here's the main testing program (&lt;code&gt;pitimes.c&lt;/code&gt;):&lt;/p&gt;&#xA;&#xA;&lt;pre class=&quot;lang-c prettyprint-override&quot;&gt;&lt;code&gt;#include &amp;lt;math.h&amp;gt;&#xA;#include &amp;lt;stdio.h&amp;gt;&#xA;#include &amp;lt;time.h&amp;gt;&#xA;&#xA;#define ITERS 10000000&#xA;#define TESTWITH(x) {                                                       \\&#xA;    diff = 0.0;                                                             \\&#xA;    time1 = clock();                                                        \\&#xA;    for (i = 0; i &amp;lt; ITERS; ++i)                                             \\&#xA;        diff += (x) - M_PI;                                                 \\&#xA;    time2 = clock();                                                        \\&#xA;    printf(&quot;%s\\t=&amp;gt; %e, time =&amp;gt; %f\\n&quot;, #x, diff, diffclock(time2, time1));   \\&#xA;}&#xA;&#xA;static inline double&#xA;diffclock(clock_t time1, clock_t time0)&#xA;{&#xA;    return (double) (time1 - time0) / CLOCKS_PER_SEC;&#xA;}&#xA;&#xA;int&#xA;main()&#xA;{&#xA;    int i;&#xA;    clock_t time1, time2;&#xA;    double diff;&#xA;&#xA;    /* Warmup. The atan2 case catches GCC's atan folding (which would&#xA;     * optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin&#xA;     * is not used. */&#xA;    TESTWITH(4 * atan(1))&#xA;    TESTWITH(4 * atan2(1, 1))&#xA;&#xA;#if defined(__GNUC__) &amp;amp;&amp;amp; (defined(__i386__) || defined(__amd64__))&#xA;    extern double fldpi();&#xA;    TESTWITH(fldpi())&#xA;#endif&#xA;&#xA;    /* Actual tests start here. */&#xA;    TESTWITH(atan2(0, -1))&#xA;    TESTWITH(acos(-1))&#xA;    TESTWITH(2 * asin(1))&#xA;    TESTWITH(4 * atan2(1, 1))&#xA;    TESTWITH(4 * atan(1))&#xA;&#xA;    return 0;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;And the inline assembly stuff (&lt;code&gt;fldpi.c&lt;/code&gt;) that will only work for x86 and x64 systems:&lt;/p&gt;&#xA;&#xA;&lt;pre class=&quot;lang-c prettyprint-override&quot;&gt;&lt;code&gt;double&#xA;fldpi()&#xA;{&#xA;    double pi;&#xA;    asm(&quot;fldpi&quot; : &quot;=t&quot; (pi));&#xA;    return pi;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;And a build script that builds all the configurations I'm testing (&lt;code&gt;build.sh&lt;/code&gt;):&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;#!/bin/sh&#xA;gcc -O3 -Wall -c           -m32 -o fldpi-32.o fldpi.c&#xA;gcc -O3 -Wall -c           -m64 -o fldpi-64.o fldpi.c&#xA;&#xA;gcc -O3 -Wall -ffast-math  -m32 -o pitimes1-32 pitimes.c fldpi-32.o&#xA;gcc -O3 -Wall              -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm&#xA;gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm&#xA;gcc -O3 -Wall -ffast-math  -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm&#xA;gcc -O3 -Wall              -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm&#xA;gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too because the optimizations are different), I've also tried switching the order of the tests around. But still, the &lt;code&gt;atan2(0, -1)&lt;/code&gt; version still comes out on top every time.&lt;/p&gt;&#xA;" OwnerUserId="13" LastEditorUserId="3768871" LastEditorDisplayName="Chris Jester-Young" LastEditDate="2019-05-15T01:33:48.730" LastActivityDate="2021-01-30T09:12:42.477" Title="What is the fastest way to get the value of π?" Tags="&lt;performance&gt;&lt;algorithm&gt;&lt;language-agnostic&gt;&lt;unix&gt;&lt;pi&gt;" AnswerCount="22" CommentCount="17" FavoriteCount="83" ContentLicense="CC BY-SA 4.0" />
  <row Id="22" PostTypeId="2" ParentId="9" CreationDate="2008-08-01T12:07:19.500" Score="51" Body="&lt;p&gt;The best way that I know of because of leap years and everything is:&lt;/p&gt;&#xA;&#xA;&lt;pre class=&quot;lang-cs prettyprint-override&quot;&gt;&lt;code&gt;DateTime birthDate = new DateTime(2000,3,1);&#xA;int age = (int)Math.Floor((DateTime.Now - birthDate).TotalDays / 365.25D);&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;" OwnerUserId="17" LastEditorUserId="63550" LastEditorDisplayName="Nick" LastEditDate="2020-02-29T01:31:43.697" LastActivityDate="2020-02-29T01:31:43.697" CommentCount="0" CommunityOwnedDate="2011-08-16T19:40:43.080" ContentLicense="CC BY-SA 4.0" />
  <row Id="24" PostTypeId="1" AcceptedAnswerId="49" CreationDate="2008-08-01T12:12:19.350" Score="186" ViewCount="91128" Body="&lt;p&gt;If I have a trigger before the update on a table, how can I throw an error that prevents the update on that table?&lt;/p&gt;&#xA;" OwnerUserId="22" LastEditorUserId="14152908" LastEditorDisplayName="Jim Anderson" LastEditDate="2021-01-29T12:57:17.153" LastActivityDate="2021-01-29T12:57:17.153" Title="Throw an error preventing a table update in a MySQL trigger" Tags="&lt;mysql&gt;&lt;database&gt;&lt;triggers&gt;" AnswerCount="7" CommentCount="0" FavoriteCount="27" ContentLicense="CC BY-SA 4.0" />
  <row Id="25" PostTypeId="1" AcceptedAnswerId="1443907" CreationDate="2008-08-01T12:13:50.207" Score="173" ViewCount="14731" Body="&lt;p&gt;I'm having issues getting the C sockets API to work properly in C++ on z/OS.&lt;/p&gt;&#xA;&lt;p&gt;Although I am including &lt;code&gt;sys/socket.h&lt;/code&gt;, I still get compile time errors telling me that &lt;code&gt;AF_INET&lt;/code&gt; is not defined.&lt;/p&gt;&#xA;&lt;p&gt;Am I missing something obvious, or is this related to the fact that being on z/OS makes my problems much more complicated?&lt;/p&gt;&#xA;&lt;p&gt;I discovered that there is an &lt;code&gt;#ifdef&lt;/code&gt; that I'm hitting. Apparently z/OS isn't happy unless I define which &amp;quot;type&amp;quot; of sockets I'm using with:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#define _OE_SOCKETS&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now, I personally have no idea what this &lt;code&gt;_OE_SOCKETS&lt;/code&gt; is actually for, so if any z/OS sockets programmers are out there (all 3 of you), perhaps you could give me a rundown of how this all works?&lt;/p&gt;&#xA;&lt;p&gt;Test App&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#include &amp;lt;sys/socket.h&amp;gt;&#xA;&#xA;int main()&#xA;{&#xA;    return AF_INET;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Compile/Link Output:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;cxx -Wc,xplink -Wl,xplink -o inet_test inet.C&#xA;&#xA;&amp;quot;./inet.C&amp;quot;, line 5.16: CCN5274 (S) The name lookup for &amp;quot;AF_INET&amp;quot; did not find a declaration.&#xA;CCN0797(I) Compilation failed for file ./inet.C. Object file not created.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;A check of sys/sockets.h does include the definition I need, and as far as I can tell, it is not being blocked by any &lt;code&gt;#ifdef&lt;/code&gt; statements.&lt;/p&gt;&#xA;&lt;p&gt;I have however noticed it contains the following:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#ifdef __cplusplus&#xA;  extern &amp;quot;C&amp;quot; {&#xA;#endif&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;which encapsulates basically the whole file? Not sure if it matters.&lt;/p&gt;&#xA;" OwnerUserId="23" LastEditorUserId="792066" LastEditorDisplayName="user5857081" LastEditDate="2020-12-02T17:23:58.717" LastActivityDate="2020-12-02T17:23:58.717" Title="How to use the C socket API in C++ on z/OS" Tags="&lt;c++&gt;&lt;c&gt;&lt;sockets&gt;&lt;mainframe&gt;&lt;zos&gt;" AnswerCount="9" CommentCount="1" FavoriteCount="9" ContentLicense="CC BY-SA 4.0" />
  <row Id="26" PostTypeId="2" ParentId="17" CreationDate="2008-08-01T12:16:22.167" Score="140" Body="&lt;p&gt;The answer by phpguy is correct but I think there is a lot of confusion in the  additional details there.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;The basic answer is in a &lt;code&gt;BLOB&lt;/code&gt; data type / attribute domain. &lt;strong&gt;BLOB&lt;/strong&gt; is short for Binary Large Object and that column data type is specific for handling binary data.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;See &lt;a href=&quot;<http://dev.mysql.com/doc/refman/5.7/en/blob.html&quot>; rel=&quot;noreferrer&quot;&gt;the relevant manual page for MySQL&lt;/a&gt;.&lt;/p&gt;&#xA;" OwnerUserId="48" OwnerDisplayName="Mat Scales" LastEditorUserId="126039" LastEditorDisplayName="Geoff Dalgas" LastEditDate="2016-06-02T05:55:17.060" LastActivityDate="2016-06-02T05:55:17.060" CommentCount="0" ContentLicense="CC BY-SA 3.0" />
</posts>

读取大型XML文件并写入大型csv文件

import xml.etree.ElementTree as et
import csv

# 创建(如果文件存在会删除重新创建)csv文件并写入header
with open(output_file, "w") as f:
	writer = csv.writer(f)
	writer.writerow(["Id", "CreationDate", ...])

# 创建input_file(XML)的迭代器,每读到一个开始标签和结束标签都会触发对应的事件
context = et.iterparse(input_file, events=("start", "end"))
context = iter(context)

# 获取第一个节点,也就是根节点<posts>
ev, root = next(context)

# 创建缓冲区,用来写入csv文件
buffer = []

# 迭代XML文件
for ev, el in context:
	if ev == "start" and el.tag == "row":
		row = [el.attrib["Id"], el.attrib["CreationDate"], ...] # 得到row数据
		buffer.append(row) # 添加到缓冲区
		if len(buffer) == 1000:
			# 缓冲区有了1000条数据,写入(追加)到csv文件里
      with open(output_file, 'a') as f:
        writer = csv.writer(f)
        writer.writerows(buffer)
      buffer.clear() # 清空缓冲区
		
		# 清除<posts>节点里添加的row子节点,可以避免占用内存,这样当读完xml文件,<posts>节点里也不会记录任何row子节点
	  root.clear() 

# 将缓冲区剩余的row存入csv文件里
if len(buffer) != 0:
	with open(output_file, 'a') as f:
		writer = csv.writer(f)
    writer.writerows(buffer)
  buffer.clear() # 清空缓冲区

写入成功后的csv文件

Untitled