码迷,mamicode.com
首页 >  
搜索关键字:Sublime Text 3    ( 54572个结果
C#:TextBox控件操作类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ /// /// TextBox控...
分类:其他好文   时间:2014-05-08 19:15:06    阅读次数:293
单点登录
string sKey = username.Text.ToString().Trim(); // 得到Cache中的给定Key的值 string sUser = Convert.ToString(Cache[sKey]); // 检查是否存在 if (sUser == null || sUser....
分类:其他好文   时间:2014-05-08 12:18:20    阅读次数:258
solaris如何启动ssh服务
先查看一下ssh服务状态:# svcs或# svcs | grep sshonline Aug_07 svc:/network/ssh:default 如需要关闭ssh服务(关闭完可以 svcs | grep ssh 查看一下状态):# svcadm disable svc:/n...
分类:其他好文   时间:2014-05-08 11:30:53    阅读次数:443
Hadoop-4、Mapred数据去重
import java.io.IOException;import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.Path;import org.apache.hadoop.io.Text;import org.ap...
分类:其他好文   时间:2014-05-08 11:27:24    阅读次数:309
字符串压缩性能
先上源码: 1 using System; 2 using System.Diagnostics; 3 using System.IO; 4 using System.IO.Compression; 5 using System.Text; 6 7 namespace TestCompress 8....
分类:其他好文   时间:2014-05-08 07:04:16    阅读次数:360
csharp:Optical Character Recognition
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Drawing;using System.IO;using System....
分类:其他好文   时间:2014-05-08 06:10:59    阅读次数:395
android Toasts
1.基础 Context context = getApplicationContext(); CharSequence text = "Hello toast!"; int duration = Toast.LENGTH_SHORT; Toast toast = Toast.makeText(context, text, duration); toast.show(); 当然也可以将方...
分类:移动开发   时间:2014-05-08 04:19:04    阅读次数:357
第七讲:解析邮件内容
第七讲:解析邮件内容 一、JavaMail解析邮件内容的流程 二、解析邮件内容 2.1 解析普通邮件内容 如果Message.getContentType方法返回的MIME类型为"text/*"则表示邮件内容为文本内容,此时直接调用Message.getContent方法把邮件内容保存了一个String对象中输出给浏览器即可。但是现实邮件中会有HTML格式的邮件内容时,邮件发送程序...
分类:其他好文   时间:2014-05-08 04:11:52    阅读次数:850
Android SQLite数据库操作
更多内容欢迎访问我的个人网站:www.qingshuimonk.com查看SQLite是一种轻量级关系型数据库,目前支持NULL,INTEGER,REAL(浮点),TEXT(字符串文本),BLOB(二进制文本)这五种类型。建立的数据库文件位于/data/data/package-name/datab...
分类:移动开发   时间:2014-05-08 00:50:46    阅读次数:478
Asp.net导出Excel乱码的解决方法
通过跟踪Asp.net服务器代码,没有乱码,然而导出Excel到浏览器后,打开时出现乱码。解决方法是添加编码格式的前缀字节码:Response.BinaryWrite(System.Text.Encoding.Unicode.GetPreamble());Response.Clear();Respo...
分类:Web程序   时间:2014-05-07 20:29:11    阅读次数:328
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!