<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>强强的个人技术博客</title><link>http://www.xqblog.top/</link><description>医技科室软件(PACS, RIS)码农</description><generator>RainbowSoft Studio Z-Blog 2.3 Avengers Build 180518</generator><language>zh-CN</language><pubDate>Sun, 06 Sep 2026 10:17:59 +0800</pubDate><item><title>JAVA中List合并的方法</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/360.html</link><pubDate>Sun, 06 Sep 2026 10:15:38 +0800</pubDate><guid>http://www.xqblog.top/post/360.html</guid><description><![CDATA[<p>&nbsp;Java 里，“把集合中的子集合合并成一个集合”是一个非常常见的需求，不同场景有不同的最优写法</p><p><br/>一、List 中的子 List 合并成一个 List</p><p>1、使用 Stream（<strong>最推荐，Java 8+</strong>）</p><pre class="brush:java;toolbar:false">List&lt;List&lt;String&gt;&gt;&nbsp;listOfLists&nbsp;=&nbsp;List.of(
&nbsp;&nbsp;&nbsp;&nbsp;List.of(&quot;A&quot;,&nbsp;&quot;B&quot;),
&nbsp;&nbsp;&nbsp;&nbsp;List.of(&quot;C&quot;,&nbsp;&quot;D&quot;),
&nbsp;&nbsp;&nbsp;&nbsp;List.of(&quot;E&quot;)
);

List&lt;String&gt;&nbsp;result&nbsp;=&nbsp;listOfLists.stream()
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.flatMap(List::stream)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.toList();&nbsp;//&nbsp;Java&nbsp;16+，或&nbsp;collect(Collectors.toList())

System.out.println(result);
//&nbsp;[A,&nbsp;B,&nbsp;C,&nbsp;D,&nbsp;E]</pre><p><br/></p><!--autointro-->]]></description><category>JAVA</category><comments>http://www.xqblog.top/post/360.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=360</wfw:commentRss></item><item><title>[转]分享5个纯净好用的极品网站</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/359.html</link><pubDate>Sat, 05 Sep 2026 19:02:29 +0800</pubDate><guid>http://www.xqblog.top/post/359.html</guid><description><![CDATA[<p><span style="font-size: 16px;"><strong>分享5个纯净好用的极品网站</strong></span></p><section style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); margin: 0px 0px 0px 10px; padding: 10px 0px; outline: 0px; max-width: 100%; font-family: &quot;PingFang SC NEW&quot;, system-ui, -apple-system, BlinkMacSystemFont, &quot;Helvetica Neue&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif; letter-spacing: 0.544px; white-space: normal; background-color: rgb(255, 255, 255); background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(244, 245, 248)); display: flex; align-items: center; color: rgb(89, 109, 158); line-height: 1.5; font-size: 16px; flex: 1 1 0%; visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;"><p><span style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible;"><span leaf="" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 15px; font-weight: bold; visibility: visible;"><span textstyle="" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 20px; visibility: visible;"><br/></span></span></span></p><!--autointro-->]]></description><category>日常</category><comments>http://www.xqblog.top/post/359.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=359</wfw:commentRss></item><item><title>IntelliJ IDEA 中如何热加载功能</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/358.html</link><pubDate>Wed, 22 Jul 2026 09:01:11 +0800</pubDate><guid>http://www.xqblog.top/post/358.html</guid><description><![CDATA[<h2>1. <strong>默认的热替换（Hot Swap）</strong></h2><p>IDEA 自带基本的类热替换功能：</p><p>修改方法体内部的代码后，按 <code class="hyc-common-markdown__code__inline">Ctrl+Shift+F9</code>（Windows/Linux）或 <code class="hyc-common-markdown__code__inline">Cmd+Shift+F9</code>（Mac）重新编译当前文件</p><!--autointro-->]]></description><category>JAVA</category><comments>http://www.xqblog.top/post/358.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=358</wfw:commentRss></item><item><title>[RIS]如何杀SQL 正在运行的所有线程</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/357.html</link><pubDate>Mon, 01 Jun 2026 08:55:32 +0800</pubDate><guid>http://www.xqblog.top/post/357.html</guid><description><![CDATA[<p>运行语句获取待杀线程的记录：</p><pre class="brush:sql;toolbar:false">select&nbsp;&nbsp;&nbsp;request_session_id&nbsp;&nbsp;&nbsp;锁表进程,&#39;&nbsp;kill&nbsp;&#39;+cast(request_session_id&nbsp;as&nbsp;nvarchar(100))&nbsp;杀线程
,OBJECT_NAME(resource_associated_entity_id)&nbsp;被锁表名&nbsp;,&nbsp;*
from&nbsp;&nbsp;&nbsp;sys.dm_tran_locks&nbsp;where&nbsp;resource_type=&#39;OBJECT&#39;;</pre><p><img src="http://www.xqblog.top/zb_users/upload/2026/6/2026060132271377.png"/></p><!--autointro-->]]></description><category>PACS系统安装</category><comments>http://www.xqblog.top/post/357.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=357</wfw:commentRss></item><item><title>nvm 的常见使用方法</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/356.html</link><pubDate>Wed, 25 Feb 2026 17:29:19 +0800</pubDate><guid>http://www.xqblog.top/post/356.html</guid><description><![CDATA[<p><span style="text-wrap-mode: nowrap;">基础前提</span></p><p><span style="text-wrap-mode: nowrap;">先确认 nvm 安装成功：</span></p><p><span style="text-wrap-mode: nowrap;">Windows：在命令提示符 / 终端输入 nvm version</span></p><p><span style="text-wrap-mode: nowrap;">macOS/Linux：输入 nvm --version</span></p><!--autointro-->]]></description><category>前端</category><comments>http://www.xqblog.top/post/356.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=356</wfw:commentRss></item><item><title>sqlserver varchar 类型存储生僻字，会变成问号，而nvarchar类型不会 是什么原理？ （䶮）</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/355.html</link><pubDate>Mon, 20 Oct 2025 16:22:32 +0800</pubDate><guid>http://www.xqblog.top/post/355.html</guid><description><![CDATA[<p>&nbsp;SQL Server 中，varchar 类型和 nvarchar 类型都用于存储可变长度的字符数据。它们之间的主要区别在于字符编码的方式。</p><p>&nbsp;</p><p>varchar 类型使用的是单字节编码（如 ASCII），而 nvarchar 类型使用的是双字节编码（如 Unicode）。由于单字节编码只能表示有限的字符集，对于一些生僻字或非常用字符，单字节编码可能无法正确地存储和表示。</p><p>&nbsp;</p><p>当使用 varchar 类型存储生僻字时，由于字符编码的限制，数据库会将无法表示的字符替换为问号 ? 或其他默认替代字符。这是因为编码中没有对应的字符定义，因此无法正确存储和显示。</p><!--autointro-->]]></description><category>数据库</category><comments>http://www.xqblog.top/post/355.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=355</wfw:commentRss></item><item><title>[日常]IIS系统日志清理方法</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/354.html</link><pubDate>Wed, 06 Aug 2025 08:53:49 +0800</pubDate><guid>http://www.xqblog.top/post/354.html</guid><description><![CDATA[<p>&nbsp; &nbsp; &nbsp; 新建一个文本文档</p><p>&nbsp; &nbsp; &nbsp; 录入以下内容:</p><ol class=" list-paddingleft-2" style="list-style-type: decimal;"><pre class="brush:ps;toolbar:false">@echo&nbsp;on
title&nbsp;清理IIS日志文件

::&nbsp;IIS日志文件目录
set&nbsp;log_dir=&quot;C:\inetpub\logs\LogFiles&quot;

::&nbsp;保留日志天数
set&nbsp;bak_dat=15

::&nbsp;删除日志文件
forfiles&nbsp;/p&nbsp;%log_dir%&nbsp;/S&nbsp;/M&nbsp;*.log&nbsp;/D&nbsp;-%bak_dat%&nbsp;/C&nbsp;&quot;cmd&nbsp;/c&nbsp;echo&nbsp;正在删除&nbsp;@relpath&nbsp;文件&nbsp;...&nbsp;&amp;&nbsp;echo.&nbsp;&amp;&nbsp;del&nbsp;@file&quot;</pre></ol><p>&nbsp; &nbsp; &nbsp; &nbsp;保存,然后重命名成&nbsp; iis清理.bat,&nbsp; 扩展名必须改成.bat</p><!--autointro-->]]></description><category>日常</category><comments>http://www.xqblog.top/post/354.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=354</wfw:commentRss></item><item><title> [历史]清朝朝代表</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/353.html</link><pubDate>Sat, 01 Mar 2025 08:34:44 +0800</pubDate><guid>http://www.xqblog.top/post/353.html</guid><description><![CDATA[<p>清朝（1644 1912年）是中国最后一个封建王朝。&nbsp; 政治上，前期君主专制达到顶峰，设军机处等。在疆域方面，清朝前期积极开疆拓土，使中国的疆域较为辽阔。经济上，农业和手工业有一定发展，商业繁荣，出现了晋商、徽商等著名商帮。文化上，小说创作如《红楼梦》达到古典小说高峰。然而，后期闭关锁国，西方列强入侵，签订众多不平等条约，国内太平天国运动等起义不断，1911年辛亥革命爆发，1912年清帝退位，清朝结束。</p><p><br/></p><p>清朝的皇帝共有十二位，他们按顺序依次是：</p><!--autointro-->]]></description><category>日常</category><comments>http://www.xqblog.top/post/353.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=353</wfw:commentRss></item><item><title>[历史]明朝朝代表</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/352.html</link><pubDate>Sat, 01 Mar 2025 08:11:29 +0800</pubDate><guid>http://www.xqblog.top/post/352.html</guid><description><![CDATA[<p>明朝（1368 1644年）是中国历史上一个重要的朝代。&nbsp; 政治上，它初期废除丞相制度，强化皇权。在经济方面，农业、手工业繁荣，商品经济发展，出现了资本主义萌芽。军事上，前期军队战斗力较强，有效抵御外敌。文化领域，文学如小说蓬勃发展，《三国演义》《水浒传》等问世。对外关系上，郑和下西洋加强了中外交流。但后期，政治腐败、宦官专权、土地兼并严重，农民起义频发，最终被李自成起义军推翻，后清军入关，明朝灭亡。</p><p><br/></p><p>明朝的皇帝共有16位，以下是按照在位顺序列出的明朝皇帝及其相关信息：</p><!--autointro-->]]></description><category>日常</category><comments>http://www.xqblog.top/post/352.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=352</wfw:commentRss></item><item><title>[历史]元朝朝代表</title><author>null@null.com (强强)</author><link>http://www.xqblog.top/post/350.html</link><pubDate>Thu, 27 Feb 2025 12:13:25 +0800</pubDate><guid>http://www.xqblog.top/post/350.html</guid><description><![CDATA[<p>元朝是中国历史上首个由少数民族蒙古族建立的大一统王朝。&nbsp; 元朝疆域辽阔，是当时世界上面积最大的国家之一。政治上实行行省制度，加强中央集权。在经济方面，商业繁荣，交通发达，如大运河的修通进一步促进贸易。文化上，元曲盛行，是文学艺术的重要成就。然而，元朝民族分化政策严重，蒙古人、色目人、汉人、南人地位不等。后期政治腐败、天灾频繁，加上农民起义不断，最终被朱元璋的明朝军队推翻，结束了其近百年的统治。</p><p><br/></p><p>元朝共传五世十一帝，以下是元朝各位皇帝：&nbsp;</p><!--autointro-->]]></description><category>日常</category><comments>http://www.xqblog.top/post/350.html#comment</comments><wfw:commentRss>http://www.xqblog.top/feed.asp?cmt=350</wfw:commentRss></item></channel></rss>
