/** * 得到汉字字库的集合 * @return */ public static Map
getChinaWordStorage() { BufferedReader bu=null; try { Map ma...
分类:
其他好文 时间:
2014-06-11 11:39:12
阅读次数:
265
/** * 得到属性文件信息 * * @param key * @return */ public
static String getPropertiesByKey(String key) { InputStream in=null; ...
分类:
其他好文 时间:
2014-06-11 11:38:39
阅读次数:
215
//get 发送短信 public static String send_sms(String
mobile_phone, String msg) { String ret_str = ""; BufferedReader rd=null; try
{...
分类:
其他好文 时间:
2014-06-11 11:31:29
阅读次数:
216
/** * 查询短信的短信剩余条数 * @return */ public static String
getSmsCount() { String ret_str = ""; BufferedReader rd=null; t...
分类:
其他好文 时间:
2014-06-11 11:24:42
阅读次数:
359
没人看我代码一贴完事//cpp文件#include "StdAfx.h"#include
"MenuBar.h"#include "resource.h"HHOOK gMsgFilterHook=NULL;CMenuBar*
g_MenuBar;CMenuItem* gOldMenuItem = N...
分类:
其他好文 时间:
2014-06-11 10:48:06
阅读次数:
251
Set接口的实现,可以方便地将指定的类型以集合类型保存在一个变量中。Set是一个不包含重复元素的Collection,更确切地讲,Set
不包含满足 e1.equals(e2) 的元素对,并且最多包含一个 null
元素。Set接口的底层存储实现都是依赖Map的实现,也可以说Set中元素的管理就.....
分类:
编程语言 时间:
2014-06-11 10:03:12
阅读次数:
340
class Solution {public: char *strStr(char
*haystack, char *needle) { if (haystack == NULL || needle == NULL) return NULL;
int wpos[25...
分类:
其他好文 时间:
2014-06-11 07:40:05
阅读次数:
200
publicobjectComputeExpression(stringexpression){varresult=newDataTable().Compute(expression,null);returnresult;}MessageBox.Show(ComputeExpression("(13...
分类:
其他好文 时间:
2014-06-10 00:03:29
阅读次数:
255
//加载数据workflowName onloadmyCgxList: function (id) {
if (id != null && id != "" && typeof (id) != "undefined") { var
param = { "ID": id } $("#myCgxLi.....
分类:
其他好文 时间:
2014-06-08 00:29:54
阅读次数:
296
JTable在显示所有数据之后,假如需要搜索某个名字,则会获取新的列表数据。假设datas是JTable的数据,定义为:
private Vector datas = new Vector();当你刷新数据的时候,应该这样: if (datas != null) {...
分类:
编程语言 时间:
2014-06-07 16:59:33
阅读次数:
228