{"id":36,"date":"2020-03-16T08:16:28","date_gmt":"2020-03-16T00:16:28","guid":{"rendered":"https:\/\/blog.linsakura.cn\/?p=36"},"modified":"2020-04-26T16:55:45","modified_gmt":"2020-04-26T08:55:45","slug":"qt-write-file-utf-8-bom","status":"publish","type":"post","link":"https:\/\/blog.linsakura.com\/index.php\/2020\/03\/16\/qt-write-file-utf-8-bom\/","title":{"rendered":"Qt \u5199\u5165 UTF-8 BOM \u7f16\u7801"},"content":{"rendered":"<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">\r\nQFile file(filepath);\r\nif (file.open(QFile::WriteOnly | QIODevice::Text))\r\n{\r\n    QTextStream ts(&amp;amp;file);\r\n    ts.setGenerateByteOrderMark(true);  \/\/\u8bbe\u7f6eUTF-8\u9700\u8981\u52a0BOM\r\n    ts.setCodec(&amp;quot;UTF-8&amp;quot;);\r\n    ts &amp;lt;&amp;lt; textEdit.document()-&amp;gt;toPlainText();\r\n    file.close();\r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>QFile file(filepath); if (file.open(QFile::WriteOnly | QIODevice::Text)) { QTextStream ts(&amp;amp;file); ts.setGenerateByteOrderMark(true); \/\/\u8bbe\u7f6eUTF-8\u9700\u8981\u52a0BOM ts.setCodec(&amp;quot;UTF-8&amp;quot;); ts  [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,5],"tags":[16],"class_list":["post-36","post","type-post","status-publish","format-standard","hentry","category-dev","category-qt","tag-qt"],"_links":{"self":[{"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/posts\/36","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/comments?post=36"}],"version-history":[{"count":1,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/posts\/36\/revisions"}],"predecessor-version":[{"id":54,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/posts\/36\/revisions\/54"}],"wp:attachment":[{"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/media?parent=36"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/categories?post=36"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.linsakura.com\/index.php\/wp-json\/wp\/v2\/tags?post=36"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}