一、中文分词:分词就是利用计算机识别出文本中词汇的过程。
1.典型应用:汉字处理:拼音输入法、手写识别、简繁转换 ;信息检索:Google 、Baidu ;内容分析:机器翻译、广告推荐、内容监控
;语音处理:语音识别、语音合成 。 2.分词难点:歧义、新词等。 3.分词技术:机械分词(查词典FMM/...
分类:
其他好文 时间:
2014-06-07 06:04:35
阅读次数:
511
private void SendMail() { MailMessage mailMsg = new
MailMessage(); mailMsg.To = tbToEmail.Text; mailMsg.From = tbEmail.Text;
mailMsg.Subject ...
分类:
其他好文 时间:
2014-06-07 05:31:09
阅读次数:
235
DLL相关的东西1、DLL的加载方式隐式:#pragma comment(lib,
"XX.lib");编译器去查找名为XX.dll的DLL,除了名字相同,该DLL和该LIB的GUID也相同。显式:HINSTANCE hInst =
LoadLibrary(TEXT("XX.dll"));if(N....
Text类型文本类型由Text类型表示,包含纯文本内容,可以包含转义后的HTML字符,但不能包含HTML代码。Text节点具有以下特征:nodeType的值为3;nodeName的值为"#text";nodeValue的值为节点所包含的文本;parentNode是一个Element;不支持(没有)子...
分类:
编程语言 时间:
2014-05-29 02:37:10
阅读次数:
376
using System;using System.Collections.Generic;using
System.Text;using System.Collections;using System.Windows.Forms;using
System.Drawing;//展示端口namespa...
分类:
其他好文 时间:
2014-05-29 02:34:07
阅读次数:
505
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 6 using System.IO; 7 using
System.Web; 8 usi...
分类:
Web程序 时间:
2014-05-29 01:07:43
阅读次数:
392
ViewState在客户端展开的时候,默认是Auto,不加密的,如果页面有限制性的表单控件才加密,所以,可以查看,代码如下:
byte[] bytes = Convert.FromBase64String(ViewStateTextBox.Text);
DecodedDataTextBox.Text...
分类:
其他好文 时间:
2014-05-28 19:04:41
阅读次数:
659
using System;using System.Collections.Generic;using
System.ComponentModel;using System.Data;using System.Drawing;using
System.Linq;using System.Text;u...
分类:
Web程序 时间:
2014-05-28 18:29:46
阅读次数:
378
一.@代表引用资源1.引用自定义资源。格式:@[package:]type/nameandroid:text="@string/hello"2.引用系统资源。格式:@android:type/name
android:textColor="@android:color/opaque_red"注意:其...
分类:
移动开发 时间:
2014-05-28 12:52:09
阅读次数:
329
–-表现最差的前10名使用查询SELECT TOP 10 ProcedureName =
t.text, ExecutionCount = s.execution_count, AvgExecutionTime = isnull (
s.total_elapsed_time / s.executio...
分类:
数据库 时间:
2014-05-28 11:25:22
阅读次数:
449