Multi Search - 多搜索引擎搜索,油猴脚本右侧的搜索显示内容不全,请问对脚本怎么修改进行修正,alook油猴脚本

文章 2年前 (2021) admin
0

Q1:在搜索引擎中怎么实现完全匹配查询

在有搜索引擎之前,我们查文档常使用顺序匹配1我们需要在文档中顺序扫描,找到完全匹配的子句2有的情况精确匹配比搜索引擎的查找有优势,比如这样的内容”chinese:1388838245“,如果用户输入”883“希望搜到这则内容,在常规的情况下是搜不到的3这是因为在有了搜索引擎后,我们对查询语句做的处理就不一样了4我们通常会先分词,然后查找对应的词条索引,最后得到评分由高到低的文档列表5上面的例句在常规的分词情况下,没有也不可能有”883“这个词条,因此搜索不到这则内容6我一度以为没法实现完全匹配了,直到一个硬需求的出现7花了一天时间,把完全匹配用搜索引擎的思维整理出来8简要描述实现思路,字段按一字一词的形式分词,再利用短语查询来搜索9ES中,可以实现一字一词的的分词器是NGram10它其实是一个上下文相连续字符的分词工具,可以看官方文档中的例子11当我们将它 min_gram 和 max_gram 都设为1时,它会按一字一词的形式分词12比如“shinyke@189.cn”,分词的结果是["s" , "h" , "i" , "n" , "y" , "k" , "e" , "@" , "1" , "8" , "9" , "." , "c" , "n" ]13

/index_name/    {    "settings": {      "analysis": {        "analyzer": {           "charSplit": {            "type": "custom",                "tokenizer": "ngram_tokenizer"          }        },       "tokenizer": {             "ngram_tokenizer": {               "type": "nGram",               "min_gram": "1",               "max_gram": "1",               "token_chars": [                 "letter",                 "digit",                 "punctuation"               ]             }          }        }     }  }以上语句中,构建了一个名为“charSplit”的分析器14它使用一个名为“ngram_tokenizer”的Ngram分词器15可以用如下语句测试charSplit分析器,可以看到一字一词的效果:curl -POST http://IP:port/{index_name}/_analyze?pretty&analyzer=charSplit  "测试语句"把这个分析器在mapping里用起来:...   "sender": {     "type": "string",     "store": "yes",     "analyzer": "charSplit",     "fields": {       "raw": {         "type": "string",         "index": "not_analyzed"       }     },    ...接下来就可以用match_phrase来实现完全匹配查询16/{index_name}/{type_name}/_search  {    "query": {      "multi_match": {        "query": "@189.cn",        "type": "phrase", //type指定为phrase        "slop": 0,        //slop指定每个相邻词之间允许相隔多远17此处设置为0,以实现完全匹配18        "fields": [          "sender"        ],        "analyzer": "charSplit", //分析器指定为charSplit        "max_expansions": 1            }    },    "highlight": {   //测试高亮是否正常      "pre_tags": [        ""      ],      "post_tags": [        ""      ],      "fragment_size": 100,      "number_of_fragments": 2,      "require_field_match": true,      "fields": {        "sender": {}      }    }  }phrase查询原始的作用是用来做短语查询,它有一个重要的特点:有顺序19我们利用了它匹配的有序性,限制slop为0,则可实现完全匹配查询20以上语句返回的结果是:{        "took": 18,      "timed_out": false,      "_shards": {          "total": 9,          "successful": 9,          "failed": 0      },      "hits": {          "total": 1,          "max_score": 0.40239456,          "hits": [              {                  "_index": "index_name",                  "_type": "type_name",                  "_id": "AU9OLIGOZN4dLecgyoKp",                  "_score": 0.40239456,                  "_source": {                      "sender": "18977314000 , 李X , 秦X , 刘X "                  },                  "highlight": {                      "sender": [                          "18977314000 <18977314000@189.cn>, 李X <18977314000@189.cn>, 秦纯X <18977314000@189.cn>, 刘X <189773140"                      ]                  }              }          ]      }    }到此,就实现了完全匹配查询21实际环境中用NGram做一字一词分析器的时候会更细致一些,比如有一些字符需要用stop word过滤掉22这些细节可以根据实际需要在构造分析器时添加filter实现,在此不做赘述23

Q2:C# 如何在listbox中模糊查询

C# listbox 的用法 属性列表:    1.SelectionMode  组件中条目的选择类型:None-根本不允许任何选择;One-默认值,只选择单个选项;MultiSimple-简单的多项选择,单击一次鼠标就选中或取消选中列表中的一项;MultiExtended-扩展的多项选择,类似windows中的选择操作.SelectedItem   在单选的列表框里, SelectedItem返回的是一个对象,它的文本由Text属性表示.作用是获得列表框中被选择的条目.如果控件允许多项选择,被选中的条目就以SelectedItems属性表示,它是Item对象的一个集合.    2.Count           列表框中条目的总数    3.SelectedIndex /SelectedIndices/SelectedItem/SelectedItemsListBox.SelectedIndex属性获取单项选择ListBox中当前选定项的位置;ListBox.SelectedIndices属性获取一个集合,该集合包含ListBox中所有当前选定项的从零开始的索引;ListBox.SelectedItem属性获取ListBox中当前选定的项;ListBox.SelectedItems属性获取多重选择ListBox中所有选定的项,它是一集合24Public ReadOnly Property SelectedIndices As ListBox.SelectedIndexCollectionListBox.SelectedIndexCollection,包含控件中当前选定项的索引25如果当前没有选定的项,则返回空 ListBox.SelectedIndexCollection泛指列表框中的所有项取列表框中被选中的值     ListBox.SelectedValue动态的添加列表框中的项:     ListBox.Items.Add("所要添加的项");以下代码实现通过输入框向列表框中添加内容:    Private Sub bttnAdd1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bttnAdd1.Click        Dim ListItem As String        ListItem = InputBox("Enter new item"s name")        If ListItem.Trim "" Then            sourceList.Items.Add(ListItem)        End If    End Sub     ListBox.Items.Insert(index,item)     item是要添加到列表的对象,index是这个新项的索引26 移出指定项:     //首先判断列表框中的项是否大于0     If(ListBox.Items.Count > 0 )     {     //移出选择的项      ListBox.Items.Remove(ListBox.SelectedItem);     }以下代码实现从单项选择的列表框中删除被选中的条目:    Private Sub bttnRemoveSelDest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bttnRemoveSelDest.Click        ListBox.Items.Remove(ListBox.SelectedItem)    End Sub以下代码实现从多项选择列表框中删除多个条目:    Private Sub bttnRemoveSelSrc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bttnRemoveSelSrc.Click        Dim i As Integer        For i = 0 To ListBox.SelectedIndices.Count - 1            LisBoxt.Items.RemoveAt(ListBox.SelectedIndices(0))        Next    End Sub    备注:利用ListBox.Items.Remove方法,以要删除的对象作为参数,从列表中删除条目27而利用RemoveAt方法可以删除指定位置(索引)的列表项,它以索引作为参数:ListBox.Items.RemoveAt(index)清空所有项:     //首先判断列表框中的项是否大于0     If(ListBox.Items.Count > 0 )     {     //清空所有项     ListBox.Items.Clear();     }列表框可以一次选择多项:     只需设置列表框的属性 SelectionMode="Multiple",按Ctrl可以多选多列表框中搜索字符串:FindString和 FindStringExact方法可以迅速地找到条目(search word)在列表里的位置(wordIndex)28它们都接收字符串作为弟一个参数,第二个参数可选,用于指定搜索开始的位置29其中FindString找到与指定字符部分匹配的条目,而FindStringExact找到时完全匹配的30wordIndex=ListBox.FindStringExact("search word")wordIndex=ListBox.FindString("search word")Contains方法利用它可以避免在列表中插入相同的对象31此方法接收一个对象作为参数,返回Ture/False来表示Items集合中是否包含这个对象32比如,要实现以下功能:先检查插入的字符串是否已经存在于列表,只有当列表中还没有包含这个字符串时才插入它33其代码如下(VB.Net):Dim itm As String="Remote Computing"If Not ListBox.Items.Contains(itm) then           ListBox1.Item.Add(itm)End If两个列表框联动,即两级联动菜单     //判断第一个列表框中被选中的值     switch(ListBox1.SelectValue)     {//如果是"A",第二个列表框中就添加这些:case "A"      ListBox2.Items.Clear();      ListBox2.Items.Add("A1");      ListBox2.Items.Add("A2");      ListBox2.Items.Add("A3");//如果是"B",第二个列表框中就添加这些:case "B"      ListBox2.Items.Clear();      ListBox2.Items.Add("B1");      ListBox2.Items.Add("B2");      ListBox2.Items.Add("B3");     } 实现列表框中项的移位     即:向上移位、向下移位     具体的思路为:创建一个ListBox对象,并把要移位的项先暂放在这个对象中34     如果是向上移位,就是把当前选定项的的上一项的值赋给当前选定的项,然后     把刚才新加入的对象的值,再附给当前选定项的前一项35     具体代码为:      //定义一个变量,作移位用      index = -1;      //将当前条目的文本以及值都保存到一个临时变量里面      ListItem lt=new ListItem (ListBox.SelectedItem.Text,ListBox.SelectedValue);      //被选中的项的值等于上一条或下一条的值     ListBox.Items[ListBox.SelectedIndex].Text=ListBox.Items[ListBox.SelectedIndex + index].Text;      //被选中的项的值等于上一条或下一条的值     ListBox.Items[ListBox.SelectedIndex].Value=ListBox.Items[ListBox.SelectedIndex + index].Value;      //把被选中项的前一条或下一条的值用临时变量中的取代      ListBox.Items[ListBox.SelectedIndex].Test=lt.Test;      //把被选中项的前一条或下一条的值用临时变量中的取代      ListBox.Items[ListBox.SelectedIndex].Value=lt.Value;      //把鼠标指针放到移动后的那项上      ListBox.Items[ListBox.SelectedIndex].Value=lt.Value;移动指针到指定位置:      (1).移至首条          //将被选中项的索引设置为0就OK了          ListBox.SelectIndex=0;      (2).移至尾条          //将被选中项的索引设置为ListBox.Items.Count-1就OK了          ListBox.SelectIndex=ListBox.Items.Count-1;      (3).上一条          //用当前被选中的索引去减 1          ListBox.SelectIndex=ListBox.SelectIndex - 1;      (4).下一条          //用当前被选中的索引去加 1          ListBox.SelectIndex=ListBox.SelectIndex + 1;

Q3:

Q4:java多条件查询问题

Java多条件不定查询网站或各种管理系统都会用到search,search会用到一个或多个不确定条件的搜索36单条件搜索比较简单,有时候会有多个条件一起查询37如果系统已经提供了相关的方法让你最好用,比如我修改这个旧系统需要加搜索的时候,我得自己写http://redoufu.com/。一开始没那么在意,就是拼sql,后来发现搜索的地方很多39总是这样写不仅增加了工作量,还不得不做很多重复的工作40可能以后会做这种工作,所以还是写一个比较通用的查询方法41

package com.test导入Java42乌提尔43迭代器;导入Java44乌提尔45linkedhashmap导入Java46乌提尔47列表;导入Java48乌提尔49地图;导入Java50乌提尔51地图52入口;导入Java53乌提尔54设置;导入javax55注释56资源;导入组织57阿帕奇58poi59hssf60记录61配方62功能63t;导入组织64弹簧框架65语境66应用程序上下文;导入组织67弹簧框架68语境69支持70classpathsmlapplicationcontext导入组织71弹簧框架72JDBC73核心74BeanPropertyRowMapper导入组织75弹簧框架76JDBC77核心78JDBC模板;导入com79AMS80博81web API82dto83代理人;公共类多任务搜索{ @资源(名称=" jdbcTemplate ")私有JdbcTemplate JdbcTemplate @ Resource(名称=" storefrondao ")私有映射搜索(){字符串名称="公司;字符串email=" @ 163字符串" invoiceTitle="公司;(同Internationalorganizations)国际组织符号=1;字符串位于=" 2012-04-26 ";map map=new LinkedHashMap();//保持添加顺序//Map Map=new HashMap();//无固定顺序map.put("name like ",name);map.put("email like ",email);map.put("invoiceTitle like ",发票标题);map.put("sign=",sign);map.put("addtime=",at);返回地图;}公共列表dbSearch(Class typeClass,Map map,String order by){字符串路径[]={ " AMS-servlet84XML " };应用程序上下文CTX=新类路径XML应用程序上下文(路径);CTX85getbean(" jdbcTemplate ");list TList=null string tablename=TypeClass86GetName().子字符串(typeClass.getName().lastIndexOf("87") 1);StringBuffer SQL=new StringBuffer(" select * from ");SQL88追加(表名);if (map.size()!=0) { sql.append(" t,其中1=1 ");//后面只需拼接和条件} Set Set=map89entryset();迭代器迭代器=设置90迭代器();for(int I=0;我准备好了91size();I){ 0地图条目映射条目=(条目)迭代器92next();如果(!”93等于(mapEntry.getValue().toString())) { //模糊匹配if (mapEntry.getKey().toString().包含(" like "){//SQL94追加("和t . mapentry95getkey()" " mapentry96getvalue()" ");sql.append("和t . " MapEntry97getKeY()" " % 1 " " MapEntry98getVaLue()“%”);//精确匹配}else {//sql.append("和t99MapEntry100getKeY()" " % 1 " " MapEntry101getVaLue()“%”);sql.append("和t . " MapEntry102GetKey()" " MapEntry103GetVaLue()");} } } if (null!=orderby!等于(排序依据)){ SQL104追加(排序依据);}系统105出去106println(" SQL : " SQL107tostring());TList=jdbctemplate108查询(SQL109ToString(),新对象[] {},新的BeanPropertyRowMapper(TypeClass));返回TList}公共静态void main(String[]args){ MultiTaskSearch mt=new MultiTaskSearch();map map=mt . search();字符串orderby="按addTime desc排序";列表代理=mt . DBSEarch(代理110类、地图、排序依据);适用于(代理代理代理:代理){系统111出去112代理人113getname());}系统114出去115println(" * * * * * * * * * * * * * * *代理116size());}}或者可以用拼结构化查询语言的方法实现使用联盟关键字可以在一个文本框内搜索出多个条件的数据选择t1 .*来自(选择*来自代理,其中名称如“2%”联盟选择*来自代理,其中电子邮件如“2%”联盟选择*来自代理,其中联系人如" 2%")t1这种查询结果是所有的集合,也可以把联盟换成或者

Q5:lucene索引文件如何拆分,把一个索引文件库拆分成多个索引文件,以便multiSearch来针对不同索引进行搜索

索引拆分?可以建立索引的时候就分成块撒117比如 你可能你的数据有类型 你可以按不同类型的分 一个类型一个索引?要么就用hadoop?或者用elasticsearch吧 分布式的基于lucene的, 我目前在用118

Q6:寻求100个使用率最高的计算机英语单词

CPU(Center Processor Unit)中央处理单元 mainboard主板 RAM(random access memory)随机存储器(内存) ROM(Read Only Memory)只读存储器 Floppy Disk软盘 Hard Disk硬盘 CD-ROM光盘驱动器(光驱) monitor监视器 keyboard键盘 mouse鼠标 chip芯片 CD-R光盘刻录机 HUB集线器 Modem= MOlator-DEMolator,调制解调器 P-P(Plug and Play)即插即用 UPS(Uninterruptable Power Supply)不间断电源 BIOS(Basic-input-Output System)基本输入输出系统 CMOS(Complementary Metal-Oxide-Semiconctor)互补金属氧化物半导体 setup安装 uninstall卸载 wizzard向导 OS(Operation Systrem)操作系统 OA(Office AutoMation)办公自动化 exit退出 edit编辑 复制 cut剪切 paste粘贴 delete删除 select选择 find查找 select all全选 replace替换 undo撤消 redo重做 program程序 license许可(证) back前一步 next下一步 finish结束 folder文件夹 Destination Folder目的文件夹 user用户 click点击 double click双击 right click右击 settings设置 update更新 release发布 data数据 data base数据库 DBMS(Data Base Manege System)数据库管理系统 view视图 insert插入 object对象 configuration配置 command命令 document文档 POST(power-on-self-test)电源自检程序 cursor光标 attribute属性 icon图标 service pack服务补丁 option pack功能补丁 Demo演示 short cut快捷方式 exception异常 debug调试 previous前一个 column行 row列 restart重新启动 text文本 font字体 size大小 scale比例 interface界面 function函数 access访问 manual指南 active激活 computer language计算机语言 menu菜单 GUI(graphical user interfaces )图形用户界面 template模版 page setup页面设置 password口令 code密码 print preview打印预览 zoom in放大 zoom out缩小 pan漫游 cruise漫游 full screen全屏 tool bar工具条 status bar状态条 ruler标尺 table表 paragraph段落 symbol符号 style风格 execute执行 graphics图形 image图像 Unix用于服务器的一种操作系统 Mac OS苹果公司开发的操作系统 OO(Object-Oriented)面向对象 virus病毒 file文件 open打开 colse关闭 new新建 save保存 exit退出 clear清除 default默认 LAN局域网 WAN广域网 Client/Server客户机/服务器 ATM( Asynchronous Transfer Mode)异步传输模式 Windows NT微软公司的网络操作系统 Internet互联网 WWW(World Wide Web)万维网 protocol协议 HTTP超文本传输协议 FTP文件传输协议 Browser浏览器 homepage主页 Webpage网页 website网站 URL在Internet的WWW服务程序上 用于指定信息位置的表示方法 Online在线 Email电子邮件 ICQ网上寻呼 Firewall防火墙 Gateway网关 HTML超文本标识语言 hypertext超文本 hyperlink超级链接 IP(Address)互联网协议(地址) SearchEngine搜索引擎 TCP/IP用于网络的一组通讯协议 Telnet远程登录 IE(Internet Explorer)探索者(微软公司的网络浏览器) Navigator引航者(网景公司的浏览器) multimedia多媒体 ISO国际标准化组织 ANSI美国国家标准协会 able 能 activefile 活动文件 addwatch 添加监视点 allfiles 所有文件 allrightsreserved 所有的权力保留 altdirlst 切换目录格式 andfixamuchwiderrangeofdiskproblems 并能够解决更大范围内的磁盘问题 andotherinFORMation 以及其它的信息 archivefileattribute 归档文件属性 assignto 指定到 autoanswer 自动应答 autodetect 自动检测 autoindent 自动缩进 autosave 自动存储 availableonvolume 该盘剩余空间 badcommand 命令错 badcommandorfilename 命令或文件名错 batchparameters 批处理参数 binaryfile 二进制文件 binaryfiles 二进制文件 borlandinternational borland国际公司 bottommargin 页下空白 bydate 按日期 byextension 按扩展名 byname 按名称 bytesfree 字节空闲 callstack 调用栈 casesensitive 区分大小写 causespromptingtoconfirmyouwanttooverwritean 要求出现确认提示,在你想覆盖一个 centralpointsoftwareinc central point 软件股份公司 changedirectory 更换目录 changedrive 改变驱动器 changename 更改名称 characterset 字符集 checkingfor 正在检查 checksadiskanddisplaysastatusreport 检查磁盘并显示一个状态报告 chgdrivepath 改变盘/路径 node 节点 npasswd UNIX的一种代理密码检查器,在提交给密码文件前,它将对潜在的密码进行筛选119 OSPF 开放最短路径优先协议 OSI Model 开放系统互连模式 out-of-band attack 带外攻击 packet filter 分组过滤器 password 口令 path 路径 payload 净负荷 PBX 专用交换机 PCS 个人通信业务 peer 对等 permission 权限 plaintext 明文 PPTP 点到点隧道协议 port 端口 prority 优先权 protocol 协议 potential browser 潜在浏览器 POP 互联网电子邮件协议标准 是Post Office Protocol 的缩写,是互联网电子邮件协议标准120我们可以通过有POP 服务功能的主机传送及接收电子邮件121该协议的缺陷是,当你接收电子邮件时,所有 的信件都从服务器上清除,下载到你的本地硬盘122当然也有一些客户端程序可以将电 子邮件留在服务器上,或设置成超过一定大小的文件不可下载123随着邮件采用多媒体 格式,邮件会越来越大,我们希望能够灵活掌握下载什么文件、何时下载,这就需要 IMAP 协议124目前POP的版本为POP3125 process 进程 proxy 代理 proxy server 代理服务器 paseudorandom 伪随机 phreaking 指控制电话系统的过程 RAS 远程访问服务 Remote control 远程控制 RPC 远程过程调用 remote boot 远程引导 route 路由 router 路由器 routing 路由选择 RIP 路由选择信息协议 routed daemon 一种利用RIP的UNIX寻径服务 routing table 路由表 R.U.P 路由更新协议 RSA 一种公共密匙加密算法126而RSA也许是最流行的127 script 脚本 search engine 搜索引擎 SSL 安全套接层 secure 密码 SID 安全标识符 sender 发送者 SLIP 串行线网际协议 server 服务器 server-based network 基于服务器的网络 session layer 会话层 share、sharing 共享 share-level security 共享级安全性 SMTP 简单邮件传送协议 SNMP 简单网络管理协议 Site 站点 SCSI 小型计算机系统接口 snffer 检错器 snooping 探听 standalone server 独立服务器 strong cipher 强密码 stream cipher 流密码 strong password 强口令 SQL 结构化查询语言 subnet mask 子网掩码 subdirectory 子目录 subnet 子网 swap file 交换文件thin client 瘦客户机 thread 线程 throughput 吞吐量 transport layer 传输量 Transport Protocol 传输协议 trust 信任 tunnel 安全加密链路 vector of attack 攻击向量 Virtual directory 虚目录 Virtual Machine 虚拟机 VRML 虚拟现实模型语言 volume 文件集 vulnerability 脆弱性 weak passwurd 弱口令 well-known ports 通用端口 workstation 工作站 X.25 一种分组交换网协议 zone transfer 区域转换 authentication 认证、鉴别 authorization 授权 Back Office Microsoft公司的一种软件包 Back up 备份 backup browser 后备浏览器 BDC 备份域控制器 baseline 基线 BIOS 基本输入/输出系统 Binding 联编、汇集 bit 比特、二进制位 BOOTP 引导协议 BGP 引导网关协议 Bottleneck 瓶径 bridge 网桥、桥接器 browser 浏览器 browsing 浏览 channel 信道、通路 CSU/DSU 信道服务单元/数字服务单元 Checksum 校验和 Cluster 簇、群集 CGI 公共网关接口crash(崩溃) 系统突然失效,需要从新引导 CD-ROM 只读型光盘 Component 组件 data link 数据链路 datagram 数据报 default document 缺省文档 digital key system 数字键控系统 disk mirroring 磁盘镜像 distributed file system 分布式文件系统 eavesdropping 窃听、窃取 encrypted tunnel 加密通道 enterprise network 企业网 Ethernet 以太网 External security 外部安全性 environment variable 环境变量 fax modem 传真猫 file attribute 文件属性 file system 文件系统 file 文件 FORM 格式 fragments 分段 frame relay 桢中继 firewall 防火墙 gated daemon gated进程(好象是一种早期的UNIX寻径服务) gateway 网关 global account 全局帐号 global group 全局组 group 组 group account 组帐号 group identifier 组标识符 HCL 硬件兼容性表 hash 散表 HPFS 高性能文件系统 Home directory 主目录 home page 竹叶 hop 驿站、中继段 host 主机 hyperlink 超文本链接 highjacking 劫持终端,即为攻击者捕获另一个用户会话的控制icon 图标 impersonation attack 伪装攻击 index server 索引服务器 ISA 工业标准结构 Inherieted Rights Filter 继承权限过滤器 ISDN 综合业务数字网 interactive user 交互性用户 intermediate system 中介系统 internal security 内部安全性 Internet Explorer(IE) IBM的万维网浏览器 Internet server 因特网服务器 Interpreter 解释程序 intranet 内联网,企业内部网 intruder 入 侵 者 Java Virtual Machine Java虚拟机 java script 基于Java语言的一种脚本语言 jack in 一句黑客常用的口语,意思为破坏服务器安全的行为 kernel 内核 keys 密钥 keyspace 密钥空间 Keystroke Recorder(按键记录器) 一些用语窃取他人用户名和密码的工具 LAN Server 局域网服务器 Local security 局部安全性 log 日志、记录 logging 登录 logoff 退出、注销 logical port 逻辑端口 logon 注册 logon script 登录脚本 LFN 长文件名 logic bomb(逻辑炸弹)一种可导致系统加锁或者故障的程序或代码128 mass browser 主浏览器 member server 成员服务器 menu 菜单 message 消息 multilink 多链接 MIME 多媒体Internet邮件扩展 MPR 多协议路由器 multiprocessing 多重处理 Mole 模块 multihomed host 多穴主机 chooseoneofthefollowing 从下列中选一项 clearall 全部清除 clearallbreakpoints 清除所有断点 clearsanattribute 清除属性 clearscommandhistory 清除命令历史 clearscreen 清除屏幕 closeall 关闭所有文件 codegeneration 代码生成 colorpalette 彩色调色板 commandline 命令行 commandprompt 命令提示符 compressedfile 压缩文件 configuresaharddiskforusewithmsdos 配置硬盘,以为 MS-DOS 所用 conventionalmemory 常规内存 copiesdirectoriesandsubdirectoriesexceptemptyones 拷贝目录和子目录,空的除外 copiesfileswiththearchiveattributeset 拷贝设置了归档属性的文件 copiesoneormorefilestoanotherlocation 把文件拷贝或搬移至另一地方 copiesthecontentsofonefloppydisktoanother 把一个软盘的内容拷贝到另一个软盘上 diskette 复制磁盘 movecompfindrenamedeletevervieweditattribwordpprintlist C拷贝M移动 O比 F搜索R改名 D删除 V版本 E浏览A属性 W写字 P打印 L列表 rightc 版权(c createdospartitionorlogicaldosdrive 创建DOS分区或逻辑DOS驱动器 createextendeddospartition 创建扩展DOS分区 createlogicaldosdrivesintheextendeddospartition 在扩展DOS分区中创建逻辑DOS驱动器 createprimarydospartition 创建DOS主分区 createsadirectory 创建一个目录 createschangesordeletesthevolumelabelofadisk 创建,改变或删除磁盘的卷标 currentfile 当前文件 currentfixeddiskdrive 当前硬盘驱动器 currentsettings 当前设置 currenttime 当前时间 cursorposition 光标位置 defrag 整理碎片 dele 删去 deletepartitionorlogicaldosdrive 删除分区或逻辑DOS驱动器 deletesadirectoryandallthesubdirectoriesandfilesinit 删除一个目录和所有的子目录及其中的所有文件 deltree 删除树 devicedriver 设备驱动程序 dialogbox 对话栏 directionkeys 方向键 directly 直接地 directorylistargument 目录显示变量 directoryof 目录清单 directorystructure 目录结构 diskaccess 磁盘存取 disk 磁盘拷贝 diskservicescomparefindrenameverifyvieweditmaplocateinitialize 磁盘服务功能: C拷贝 O比较 F搜索R改卷名V校验 浏览E编缉M图 L找文件 N格式化 diskspace 磁盘空间 displayfile 显示文件 displayoptions 显示选项 displaypartitioninFORMation 显示分区信息 displaysfilesinspecifieddirectoryandallsubdirectories 显示指定目录和所有目录下的文件 displaysfileswithspecifiedattributes 显示指定属性的文件 displaysorchangesfileattributes 显示或改变文件属性 displaysorsetsthedate 显示或设备日期 displayssetupscreensinmonochromeinsteadofcolor 以单色而非彩色显示安装屏信息 displaystheamountofusedandfreememoryinyoursystem 显示系统中已用和未用的内存数量 displaysthefullpathandnameofeveryfileonthedisk 显示磁盘上所有文件的完整路径和名称 不知道几个了,不过应该够你背的了~

相关文章