上一页 1 ··· 25 26 27 28 29
摘要: 1 保存到text中 demo1.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>保存到text</title> </head> <body> <script> var str="this is a demo"; sa 阅读全文
posted @ 2023-03-19 00:00 little_fat_sheep 阅读(267) 评论(0) 推荐(0)
摘要: 1 前言 最近有个需求,需要使用JS快速读取外部大数据文件(60w条记录的表)。笔者尝试过使用JS读取Excel文件,但是跑了十几分钟仍未出结果,后来笔者尝试将原数据保存为TXT文件,再从TXT文件中读取数据,只需几秒钟即可读取完毕。在此分享一下,也留着以后备用。 2 案例 为方便快速理解,笔者挑选 阅读全文
posted @ 2023-03-18 23:59 little_fat_sheep 阅读(1615) 评论(0) 推荐(0)
摘要: 1 工具 ​ 为方便在 Windows 系统下操作 Linux 命令,本文使用 Git 工具,讲解 Linux 的常用命令,Git 下载→Git - Downloads。 安装好 Git 后,在任意目录空白处右键,在弹出菜单中点击【Git Bash Here】,即可进入 Bash 命令行界面,如下: 阅读全文
posted @ 2023-03-18 23:03 little_fat_sheep 阅读(32) 评论(0) 推荐(0)
摘要: 1 Git 简介 ​ Git 是一个开源的分布式版本控制系统,最初由 Linus Torvalds 为管理 Linux 内核而开发的开源软件,目前已应用在 Windows、Linux、MacOS 等操作系统上。 ​ SVN 也是一种版本控制系统,但是其采用集中式管理方式,容易出现单点故障,容错性差。 阅读全文
posted @ 2023-03-18 22:56 little_fat_sheep 阅读(45) 评论(0) 推荐(0)
摘要: 1 string.h、cstring(C) (1)字符串连接函数 strcat、strncat strcat(char[ ], const char[ ]) strncat(char[ ], const char[ ], int ) char str1[30]="People's Republic 阅读全文
posted @ 2023-03-18 22:52 little_fat_sheep 阅读(389) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29