using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
ZedGraph;namespace TestZedGraphCo...
分类:
其他好文 时间:
2014-05-08 19:21:43
阅读次数:
530
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
Atom 于5月6日正式开放下载(遗憾的是只有 MAC 版本),并且在 MIT
协义下开源,从界面可以看出,这款软件很像 Sublime Text,不过由于她的开源,相信很快会超越
ST。树状浏览:新建的文件为绿色,有修改的为橙色,忽略文件为暗灰。颜色选择器:类似 Dreamweaver 的功能,支...
分类:
其他好文 时间:
2014-05-08 19:14:09
阅读次数:
322
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
先查看一下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
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.基础
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
更多内容欢迎访问我的个人网站:www.qingshuimonk.com查看SQLite是一种轻量级关系型数据库,目前支持NULL,INTEGER,REAL(浮点),TEXT(字符串文本),BLOB(二进制文本)这五种类型。建立的数据库文件位于/data/data/package-name/datab...
分类:
移动开发 时间:
2014-05-08 00:50:46
阅读次数:
478
通过跟踪Asp.net服务器代码,没有乱码,然而导出Excel到浏览器后,打开时出现乱码。解决方法是添加编码格式的前缀字节码:Response.BinaryWrite(System.Text.Encoding.Unicode.GetPreamble());Response.Clear();Respo...
分类:
Web程序 时间:
2014-05-07 20:29:11
阅读次数:
328