1.本例子意在用moquette服务器来作为消息转发,通过订阅者订阅消息,发布者发布消息,然后发布者的消息可以通过服务器转发给订阅者

服务器例子:

https://github.com/andsel/moquette

核心代码为:

  1. /*
  2. * Copyright (c) 2012-2015 The original author or authors
  3. * ------------------------------------------------------
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * and Apache License v2.0 which accompanies this distribution.
  7. *
  8. * The Eclipse Public License is available at
  9. * http://www.eclipse.org/legal/epl-v10.html
  10. *
  11. * The Apache License v2.0 is available at
  12. * http://www.opensource.org/licenses/apache2.0.php
  13. *
  14. * You may elect to redistribute this code under either of these licenses.
  15. */
  16. package io.moquette.testembedded;
  17.  
  18. import io.moquette.interception.AbstractInterceptHandler;
  19. import io.moquette.interception.InterceptHandler;
  20. import io.moquette.interception.messages.*;
  21. import io.moquette.parser.proto.messages.AbstractMessage;
  22. import io.moquette.parser.proto.messages.PublishMessage;
  23. import io.moquette.server.Server;
  24. import io.moquette.server.config.IConfig;
  25. import io.moquette.server.config.ClasspathConfig;
  26.  
  27. import java.io.IOException;
  28. import java.nio.ByteBuffer;
  29. import java.util.List;
  30.  
  31. import static java.util.Arrays.asList;
  32.  
  33. public class EmbeddedLauncher {
  34. static class PublisherListener extends AbstractInterceptHandler {
  35.  
  36. @Override
  37. public void onPublish(InterceptPublishMessage msg) {
  38. System.out.println("Received on topic: " + msg.getTopicName() + " content: " + new String(msg.getPayload().array()));
  39. }
  40. }
  41.  
  42. public static void main(String[] args) throws InterruptedException, IOException {
  43. final IConfig classPathConfig = new ClasspathConfig();
  44.  
  45. final Server mqttBroker = new Server();
  46. List<? extends InterceptHandler> userHandlers = asList(new PublisherListener());
  47. mqttBroker.startServer(classPathConfig, userHandlers);
  48.  
  49. System.out.println("Broker started press [CTRL+C] to stop");
  50. //Bind a shutdown hook
  51. Runtime.getRuntime().addShutdownHook(new Thread() {
  52. @Override
  53. public void run() {
  54. System.out.println("Stopping broker");
  55. mqttBroker.stopServer();
  56. System.out.println("Broker stopped");
  57. }
  58. });
  59.  
  60. Thread.sleep(20000);
  61. System.out.println("Before self publish");
  62. PublishMessage message = new PublishMessage();
  63. message.setTopicName("/exit");
  64. message.setRetainFlag(true);
  65. // message.setQos(AbstractMessage.QOSType.MOST_ONE);
  66. // message.setQos(AbstractMessage.QOSType.LEAST_ONE);
  67. message.setQos(AbstractMessage.QOSType.EXACTLY_ONCE);
  68. message.setPayload(ByteBuffer.wrap("Hello World!!".getBytes()));
  69. mqttBroker.internalPublish(message);
  70. System.out.println("After self publish");
  71. }
  72. }

配置文件:

  1. ##############################################
  2. # Moquette configuration file.
  3. #
  4. # The synthax is equals to mosquitto.conf
  5. #
  6. ##############################################
  7.  
  8. port 1883
  9.  
  10. #websocket_port 8080
  11.  
  12. host 127.0.0.1
  13.  
  14. #Password file
  15. password_file password_file.conf
  16.  
  17. #ssl_port 8883
  18. #jks_path serverkeystore.jks
  19. #key_store_password passw0rdsrv
  20. #key_manager_password passw0rdsrv
  21.  
  22. allow_anonymous true

配置端口为1883,而ip为127.0.0.1

启动服务器:

效果为:

2.客户端源码

https://github.com/eclipse/paho.mqtt.java

核心代码:

1)订阅者源码

  1. /*******************************************************************************
  2. * Copyright (c) 2009, 2014 IBM Corp.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * and Eclipse Distribution License v1.0 which accompany this distribution.
  7. *
  8. * The Eclipse Public License is available at
  9. * http://www.eclipse.org/legal/epl-v10.html
  10. * and the Eclipse Distribution License is available at
  11. * http://www.eclipse.org/org/documents/edl-v10.php.
  12. *
  13. * Contributors:
  14. * Dave Locke - initial API and implementation and/or initial documentation
  15. */
  16.  
  17. package org.eclipse.paho.sample.mqttv3app;
  18.  
  19. import java.io.IOException;
  20. import java.sql.Timestamp;
  21.  
  22. import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
  23. import org.eclipse.paho.client.mqttv3.MqttCallback;
  24. import org.eclipse.paho.client.mqttv3.MqttClient;
  25. import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
  26. import org.eclipse.paho.client.mqttv3.MqttException;
  27. import org.eclipse.paho.client.mqttv3.MqttMessage;
  28. import org.eclipse.paho.client.mqttv3.persist.MqttDefaultFilePersistence;
  29.  
  30. /**
  31. * A sample application that demonstrates how to use the Paho MQTT v3.1 Client blocking API.
  32. *
  33. * It can be run from the command line in one of two modes:
  34. * - as a publisher, sending a single message to a topic on the server
  35. * - as a subscriber, listening for messages from the server
  36. *
  37. * There are three versions of the sample that implement the same features
  38. * but do so using using different programming styles:
  39. * <ol>
  40. * <li>Sample (this one) which uses the API which blocks until the operation completes</li>
  41. * <li>SampleAsyncWait shows how to use the asynchronous API with waiters that block until
  42. * an action completes</li>
  43. * <li>SampleAsyncCallBack shows how to use the asynchronous API where events are
  44. * used to notify the application when an action completes<li>
  45. * </ol>
  46. *
  47. * If the application is run with the -h parameter then info is displayed that
  48. * describes all of the options / parameters.
  49. */
  50. public class Sample implements MqttCallback {
  51.  
  52. /**
  53. * The main entry point of the sample.
  54. *
  55. * This method handles parsing of the arguments specified on the
  56. * command-line before performing the specified action.
  57. */
  58. public static void main(String[] args) {
  59.  
  60. // Default settings:
  61. boolean quietMode = false;
  62. String action = "subscribe";
  63. String topic = "";
  64. String message = "this is a subscriber,to subscribe message";
  65. int qos = 2;
  66. String broker = "127.0.0.1";
  67. int port = 1883;
  68. String clientId = null;
  69. String subTopic = "Sample/#";
  70. String pubTopic = "Sample/Java/v3";
  71. boolean cleanSession = true; // Non durable subscriptions
  72. boolean ssl = false;
  73. String password = null;
  74. String userName = null;
  75. // Parse the arguments -
  76. for (int i=0; i<args.length; i++) {
  77. // Check this is a valid argument
  78. if (args[i].length() == 2 && args[i].startsWith("-")) {
  79. char arg = args[i].charAt(1);
  80. // Handle arguments that take no-value
  81. switch(arg) {
  82. case 'h': case '?': printHelp(); return;
  83. case 'q': quietMode = true; continue;
  84. }
  85.  
  86. // Now handle the arguments that take a value and
  87. // ensure one is specified
  88. if (i == args.length -1 || args[i+1].charAt(0) == '-') {
  89. System.out.println("Missing value for argument: "+args[i]);
  90. printHelp();
  91. return;
  92. }
  93. switch(arg) {
  94. case 'a': action = args[++i]; break;
  95. case 't': topic = args[++i]; break;
  96. case 'm': message = args[++i]; break;
  97. case 's': qos = Integer.parseInt(args[++i]); break;
  98. case 'b': broker = args[++i]; break;
  99. case 'p': port = Integer.parseInt(args[++i]); break;
  100. case 'i': clientId = args[++i]; break;
  101. case 'c': cleanSession = Boolean.valueOf(args[++i]).booleanValue(); break;
  102. case 'k': System.getProperties().put("javax.net.ssl.keyStore", args[++i]); break;
  103. case 'w': System.getProperties().put("javax.net.ssl.keyStorePassword", args[++i]); break;
  104. case 'r': System.getProperties().put("javax.net.ssl.trustStore", args[++i]); break;
  105. case 'v': ssl = Boolean.valueOf(args[++i]).booleanValue(); break;
  106. case 'u': userName = args[++i]; break;
  107. case 'z': password = args[++i]; break;
  108. default:
  109. System.out.println("Unrecognised argument: "+args[i]);
  110. printHelp();
  111. return;
  112. }
  113. } else {
  114. System.out.println("Unrecognised argument: "+args[i]);
  115. printHelp();
  116. return;
  117. }
  118. }
  119.  
  120. // Validate the provided arguments
  121. if (!action.equals("publish") && !action.equals("subscribe")) {
  122. System.out.println("Invalid action: "+action);
  123. printHelp();
  124. return;
  125. }
  126. if (qos < 0 || qos > 2) {
  127. System.out.println("Invalid QoS: "+qos);
  128. printHelp();
  129. return;
  130. }
  131. if (topic.equals("")) {
  132. // Set the default topic according to the specified action
  133. if (action.equals("publish")) {
  134. topic = pubTopic;
  135. } else {
  136. topic = subTopic;
  137. }
  138. }
  139.  
  140. String protocol = "tcp://";
  141.  
  142. if (ssl) {
  143. protocol = "ssl://";
  144. }
  145.  
  146. String url = protocol + broker + ":" + port;
  147.  
  148. if (clientId == null || clientId.equals("")) {
  149. clientId = "SampleJavaV3_"+action;
  150. }
  151.  
  152. // With a valid set of arguments, the real work of
  153. // driving the client API can begin
  154. try {
  155. // Create an instance of this class
  156. Sample sampleClient = new Sample(url, clientId, cleanSession, quietMode,userName,password);
  157.  
  158. // Perform the requested action
  159. if (action.equals("publish")) {
  160. sampleClient.publish(topic,qos,message.getBytes());
  161. } else if (action.equals("subscribe")) {
  162. sampleClient.subscribe(topic,qos);
  163. }
  164. } catch(MqttException me) {
  165. // Display full details of any exception that occurs
  166. System.out.println("reason "+me.getReasonCode());
  167. System.out.println("msg "+me.getMessage());
  168. System.out.println("loc "+me.getLocalizedMessage());
  169. System.out.println("cause "+me.getCause());
  170. System.out.println("excep "+me);
  171. me.printStackTrace();
  172. }
  173. }
  174.  
  175. // Private instance variables
  176. private MqttClient client;
  177. private String brokerUrl;
  178. private boolean quietMode;
  179. private MqttConnectOptions conOpt;
  180. private boolean clean;
  181. private String password;
  182. private String userName;
  183.  
  184. /**
  185. * Constructs an instance of the sample client wrapper
  186. * @param brokerUrl the url of the server to connect to
  187. * @param clientId the client id to connect with
  188. * @param cleanSession clear state at end of connection or not (durable or non-durable subscriptions)
  189. * @param quietMode whether debug should be printed to standard out
  190. * @param userName the username to connect with
  191. * @param password the password for the user
  192. * @throws MqttException
  193. */
  194. public Sample(String brokerUrl, String clientId, boolean cleanSession, boolean quietMode, String userName, String password) throws MqttException {
  195. this.brokerUrl = brokerUrl;
  196. this.quietMode = quietMode;
  197. this.clean = cleanSession;
  198. this.password = password;
  199. this.userName = userName;
  200. //This sample stores in a temporary directory... where messages temporarily
  201. // stored until the message has been delivered to the server.
  202. //..a real application ought to store them somewhere
  203. // where they are not likely to get deleted or tampered with
  204. String tmpDir = System.getProperty("java.io.tmpdir");
  205. MqttDefaultFilePersistence dataStore = new MqttDefaultFilePersistence(tmpDir);
  206.  
  207. try {
  208. // Construct the connection options object that contains connection parameters
  209. // such as cleanSession and LWT
  210. conOpt = new MqttConnectOptions();
  211. conOpt.setCleanSession(clean);
  212. if(password != null ) {
  213. conOpt.setPassword(this.password.toCharArray());
  214. }
  215. if(userName != null) {
  216. conOpt.setUserName(this.userName);
  217. }
  218.  
  219. // Construct an MQTT blocking mode client
  220. client = new MqttClient(this.brokerUrl,clientId, dataStore);
  221.  
  222. // Set this wrapper as the callback handler
  223. client.setCallback(this);
  224.  
  225. } catch (MqttException e) {
  226. e.printStackTrace();
  227. log("Unable to set up client: "+e.toString());
  228. System.exit(1);
  229. }
  230. }
  231.  
  232. /**
  233. * Publish / send a message to an MQTT server
  234. * @param topicName the name of the topic to publish to
  235. * @param qos the quality of service to delivery the message at (0,1,2)
  236. * @param payload the set of bytes to send to the MQTT server
  237. * @throws MqttException
  238. */
  239. public void publish(String topicName, int qos, byte[] payload) throws MqttException {
  240.  
  241. // Connect to the MQTT server
  242. log("Connecting to "+brokerUrl + " with client ID "+client.getClientId());
  243. client.connect(conOpt);
  244. log("Connected");
  245.  
  246. String time = new Timestamp(System.currentTimeMillis()).toString();
  247. log("Publishing at: "+time+ " to topic \""+topicName+"\" qos "+qos);
  248.  
  249. // Create and configure a message
  250. MqttMessage message = new MqttMessage(payload);
  251. message.setQos(qos);
  252.  
  253. // Send the message to the server, control is not returned until
  254. // it has been delivered to the server meeting the specified
  255. // quality of service.
  256. client.publish(topicName, message);
  257.  
  258. // Disconnect the client
  259. client.disconnect();
  260. log("Disconnected");
  261. }
  262.  
  263. /**
  264. * Subscribe to a topic on an MQTT server
  265. * Once subscribed this method waits for the messages to arrive from the server
  266. * that match the subscription. It continues listening for messages until the enter key is
  267. * pressed.
  268. * @param topicName to subscribe to (can be wild carded)
  269. * @param qos the maximum quality of service to receive messages at for this subscription
  270. * @throws MqttException
  271. */
  272. public void subscribe(String topicName, int qos) throws MqttException {
  273.  
  274. // Connect to the MQTT server
  275. client.connect(conOpt);
  276. log("Connected to "+brokerUrl+" with client ID "+client.getClientId());
  277.  
  278. // Subscribe to the requested topic
  279. // The QoS specified is the maximum level that messages will be sent to the client at.
  280. // For instance if QoS 1 is specified, any messages originally published at QoS 2 will
  281. // be downgraded to 1 when delivering to the client but messages published at 1 and 0
  282. // will be received at the same level they were published at.
  283. log("Subscribing to topic \""+topicName+"\" qos "+qos);
  284. client.subscribe(topicName, qos);
  285.  
  286. // Continue waiting for messages until the Enter is pressed
  287. log("Press <Enter> to exit");
  288. try {
  289. System.in.read();
  290. } catch (IOException e) {
  291. //If we can't read we'll just exit
  292. }
  293.  
  294. // Disconnect the client from the server
  295. client.disconnect();
  296. log("Disconnected");
  297. }
  298.  
  299. /**
  300. * Utility method to handle logging. If 'quietMode' is set, this method does nothing
  301. * @param message the message to log
  302. */
  303. private void log(String message) {
  304. if (!quietMode) {
  305. System.out.println(message);
  306. }
  307. }
  308.  
  309. /****************************************************************/
  310. /* Methods to implement the MqttCallback interface */
  311. /****************************************************************/
  312.  
  313. /**
  314. * @see MqttCallback#connectionLost(Throwable)
  315. */
  316. public void connectionLost(Throwable cause) {
  317. // Called when the connection to the server has been lost.
  318. // An application may choose to implement reconnection
  319. // logic at this point. This sample simply exits.
  320. log("Connection to " + brokerUrl + " lost!" + cause);
  321. System.exit(1);
  322. }
  323.  
  324. /**
  325. * @see MqttCallback#deliveryComplete(IMqttDeliveryToken)
  326. */
  327. public void deliveryComplete(IMqttDeliveryToken token) {
  328. // Called when a message has been delivered to the
  329. // server. The token passed in here is the same one
  330. // that was passed to or returned from the original call to publish.
  331. // This allows applications to perform asynchronous
  332. // delivery without blocking until delivery completes.
  333. //
  334. // This sample demonstrates asynchronous deliver and
  335. // uses the token.waitForCompletion() call in the main thread which
  336. // blocks until the delivery has completed.
  337. // Additionally the deliveryComplete method will be called if
  338. // the callback is set on the client
  339. //
  340. // If the connection to the server breaks before delivery has completed
  341. // delivery of a message will complete after the client has re-connected.
  342. // The getPendingTokens method will provide tokens for any messages
  343. // that are still to be delivered.
  344. }
  345.  
  346. /**
  347. * @see MqttCallback#messageArrived(String, MqttMessage)
  348. */
  349. public void messageArrived(String topic, MqttMessage message) throws MqttException {
  350. // Called when a message arrives from the server that matches any
  351. // subscription made by the client
  352. String time = new Timestamp(System.currentTimeMillis()).toString();
  353. System.out.println("Time:\t" +time +
  354. " Topic:\t" + topic +
  355. " Message:\t" + new String(message.getPayload()) +
  356. " QoS:\t" + message.getQos());
  357. }
  358.  
  359. /****************************************************************/
  360. /* End of MqttCallback methods */
  361. /****************************************************************/
  362.  
  363. static void printHelp() {
  364. System.out.println(
  365. "Syntax:\n\n" +
  366. " Sample [-h] [-a publish|subscribe] [-t <topic>] [-m <message text>]\n" +
  367. " [-s 0|1|2] -b <hostname|IP address>] [-p <brokerport>] [-i <clientID>]\n\n" +
  368. " -h Print this help text and quit\n" +
  369. " -q Quiet mode (default is false)\n" +
  370. " -a Perform the relevant action (default is publish)\n" +
  371. " -t Publish/subscribe to <topic> instead of the default\n" +
  372. " (publish: \"Sample/Java/v3\", subscribe: \"Sample/#\")\n" +
  373. " -m Use <message text> instead of the default\n" +
  374. " (\"Message from MQTTv3 Java client\")\n" +
  375. " -s Use this QoS instead of the default (2)\n" +
  376. " -b Use this name/IP address instead of the default (m2m.eclipse.org)\n" +
  377. " -p Use this port instead of the default (1883)\n\n" +
  378. " -i Use this client ID instead of SampleJavaV3_<action>\n" +
  379. " -c Connect to the server with a clean session (default is false)\n" +
  380. " \n\n Security Options \n" +
  381. " -u Username \n" +
  382. " -z Password \n" +
  383. " \n\n SSL Options \n" +
  384. " -v SSL enabled; true - (default is false) " +
  385. " -k Use this JKS format key store to verify the client\n" +
  386. " -w Passpharse to verify certificates in the keys store\n" +
  387. " -r Use this JKS format keystore to verify the server\n" +
  388. " If javax.net.ssl properties have been set only the -v flag needs to be set\n" +
  389. "Delimit strings containing spaces with \"\"\n\n" +
  390. "Publishers transmit a single message then disconnect from the server.\n" +
  391. "Subscribers remain connected to the server and receive appropriate\n" +
  392. "messages until <enter> is pressed.\n\n"
  393. );
  394. }
  395.  
  396. }

客户端-发布者

只需在configutation里面修改传入的参数即可:

为保证是同一个主题,则需要保证传入-a -t两个参数

-a subscribe -t Sample/Java/v3

最终运行结果:

服务器

订阅者:

发布者

4.如何实现用MTQQ通过服务器实现订阅者和发布者的通讯的更多相关文章

  1. Redis集群~StackExchange.redis连接Sentinel服务器并订阅相关事件(原创)

    回到目录 对于redis-sentinel我在之前的文章中已经说过,它是一个仲裁者,当主master挂了后,它将在所有slave服务器中进行选举,选举的原则当然可以看它的官方文章,这与我们使用者没有什 ...

  2. SSE:服务器发送事件,使用长链接进行通讯

    概述 传统的网页都是浏览器向服务器“查询”数据,但是很多场合,最有效的方式是服务器向浏览器“发送”数据.比如,每当收到新的电子邮件,服务器就向浏览器发送一个“通知”,这要比浏览器按时向服务器查询(po ...

  3. SSE:服务器发送事件,使用长链接进行通讯 基础学习

    HTML5中新加了EventSounce对象,实现即时推送功能,可以从下面连接中学习, http://www.kwstu.com/ArticleView/kwstu_20140829064746093 ...

  4. 【开源】MQTT推送服务器——zer0MqttServer(Java编写)

    目录 说明 功能 如何使用 参考帮助 说明 重要的放前面:V1.0版本是一个非常基础的版本,除了完整的MQTT协议实现外,其他功能什么都没做. MQTT 协议是 IBM 开发的即时通讯协议,相对于 I ...

  5. HTML5服务器推送消息的各种解决办法

    摘要 在各种BS架构的应用程序中,往往都希望服务端能够主动地向客户端推送各种消息,以达到类似于邮件.消息.待办事项等通知. 往BS架构本身存在的问题就是,服务器一直采用的是一问一答的机制.这就意味着如 ...

  6. 提升linux下tcp服务器并发连接数限制

    1.修改用户进程可打开文件数限制   在Linux平台上,无论编写客户端程序还是服务端程序,在进行高并发TCP连接处理时,最高的并发数量都要受到系统对用户单一进程同时可打开文件数量的限制(这是因为系统 ...

  7. sql server 本地复制订阅 实现数据库服务器 读写分离(转载)

    转载地址:http://www.cnblogs.com/echosong/p/3603270.html 再前段echosong 写了一遍关于mysql 数据同步实现业务读写分离的文章,今天咱们来看下S ...

  8. Comet:基于 HTTP 长连接的“服务器推”技术解析

    原文链接:http://www.cnblogs.com/deepleo/p/Comet.html 一.背景介绍 传统web请求,是显式的向服务器发送http Request,拿到Response后显示 ...

  9. SQL Server服务器名称与默认实例名不一致的修复方法

    SQL Server服务器名称与默认实例名不一致的修复方法 分类: 个人累积 SQl SERVER 数据库复制2011-08-10 09:49 10157人阅读 评论(0) 收藏 举报 sql ser ...

随机推荐

  1. 自己编写jQuery动态引入js文件插件 (jquery.import.dynamic.script)

    这个插件主要是结合jquery或者xhr异步请求来使用的,它可以把已经引入过的js文件记录在浏览器内存中,当下次再引入相同的文件就忽略该文件的引入. 此插件不支持浏览器刷新保存数据,那需要利用cook ...

  2. iframe 父子页面方法调用

    在写代码的时候经常会用到将一个网页嵌入到另一个网页中,w3c也规定了一个标签<iframe>,这个标签本身就支持跨域,而且所有的浏览器都支持 iframe具有以下属性: 1.framebo ...

  3. Spark操作HBase问题:java.io.IOException: Non-increasing Bloom keys

    1 问题描述 在使用Spark BulkLoad数据到HBase时遇到以下问题: 17/05/19 14:47:26 WARN scheduler.TaskSetManager: Lost task ...

  4. 开涛spring3(12.1) - 零配置 之 12.1 概述

    12.1  概述 12.1.1  什么是零配置 在SSH集成一章中大家注意到项目结构和包结构是不是很有规律,类库放到WEB-INF/lib文件夹下,jsp文件放到WEB-INF/jsp文件夹下,web ...

  5. SharePoint 无法删除搜索服务应用程序

    在SharePoint的使用中,经常会遇到某些服务创建失败,某些服务删除不成功的情况.这里,我们就遇到了搜索服务创建失败,然后删除也不成功,使用管理中心的UI无法删除,PowerShell命令也无法删 ...

  6. [原创]CentOS下Mysql的日志回滚

    一.    环境: a)        Centos-6.5-x64位操作系统. b)        安装mysql.命令:yum install mysql* 二.    配置 a)        ...

  7. ELK菜鸟手记 (四) - 利用filebeat和不同端口把不同服务器上的log4j日志传输到同一台ELK服务器

    1. 问题描述  我们需要将不同服务器(如Web Server)上的log4j日志传输到同一台ELK服务器,介于公司服务器资源紧张(^_^) 2. 我们需要用到filebeat 什么是filebeat ...

  8. JDFS:一款分布式文件管理实用程序第二篇(更新升级、解决一些bug)

    一 前言 本文是<JDFS:一款分布式文件管理实用程序>系列博客的第二篇,在上一篇博客中,笔者向读者展示了JDFS的核心功能部分,包括:服务端与客户端部分的上传.下载功能的实现,epoll ...

  9. Vue2.x中的Render函数

    Render函数是Vue2.x版本新增的一个函数:使用虚拟dom来渲染节点提升性能,因为它是基于JavaScript计算.通过使用createElement(h)来创建dom节点.createElem ...

  10. C语言数组之冒泡排序+折半查找法(二分查找)

    冒泡排序算法 将相邻的元素进行两两比较,大的向后"冒", 小的向前"赶". 口诀: N个数字来排队,两两比较小靠前 外层循环N-1(控制需要比较的轮数). 内层 ...