function stringToDate(fDate){ var fullDate =
fDate.split(" ")[0].split("-"); var fullTime = fDate.split(" ")[1].split(":");
return ...
分类:
其他好文 时间:
2014-05-09 16:20:34
阅读次数:
244
实例1:updateUSE [数据库名称]GO/****** Object: Trigger
[dbo].[触发器名称] Script Date: 05/08/2014 12:40:25 ******/SET ANSI_NULLS ONGOSET
QUOTED_IDENTIFIER ONGO...
分类:
数据库 时间:
2014-05-09 10:50:54
阅读次数:
481
// 流程控制语句反汇编//Author:乾卦
Date:2014-5-8#includeint main(){ int a=1,b=10; if(a>b) { a=b; } a=2; b=11;
return 0;}//if语句的反汇编#i...
分类:
其他好文 时间:
2014-05-09 08:31:43
阅读次数:
373
题目来源:BeginnersLabAssignmentsCodeExamplesAccessingPrivateDataMembersinC++.Thisisaflawinthelanguage/*
**Description:AccessingPrivateDataMembersinC++
**Date:2014-05-08
**Author:xyq
*/
#include<iostream>
#include<string>
usingnamespacestd;
clas..
分类:
编程语言 时间:
2014-05-09 06:58:48
阅读次数:
332
出错的原因是adb的端口被其他程序的进程占领了,所以要做的就是找到并kill该进程。步骤:、
1、在cmd中执行adb nodaemon server,查看adb的端口号是多少,一般情况下是5037(why?我也太懂)
2、再执行netstat -ano | findstr "5037" ,会看到如下类似的情形:
这里稍微解释一下,显示的从左到右的意思分别是,连接类型(TCP)、本地...
分类:
数据库 时间:
2014-05-09 06:11:12
阅读次数:
370
// 对Date的扩展,将 Date 转化为指定格式的String //
月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1
个占位符(是 1-3 位的数字) ...
分类:
其他好文 时间:
2014-05-09 04:38:24
阅读次数:
336
最近项目需要使用excel导入功能,导入学生的时候需要指定所在班级,使用excel一次性导入!
将以前的代码改改支持属性内引用类的转换。
测试对象为User对象,javabean结构:
private String username;
private int id;
private String name;
private Date birthday;
private long he...
分类:
编程语言 时间:
2014-05-09 02:27:20
阅读次数:
319
/*
* uva575
* Date:2014/5/7
* State: AC
*/
#include
#include
#include
#include
#include
using namespace std;
const int MAXN=34;
char Arr[MAXN];
int main()
{
//cout << "Hello world!" << end...
分类:
其他好文 时间:
2014-05-09 02:25:56
阅读次数:
269
/*
* uva10879
* Date:2014/5/7
* State:AC
*/
#include
#include
using namespace std;
int main()
{
//cout << "Hello world!" <>N;
...
分类:
其他好文 时间:
2014-05-09 00:30:58
阅读次数:
287
原因:将FileUpload控件放到了UpdatePannel控件中了解决办法:将FileUpload控件位置移动到UpdatePannel控件外面
分类:
其他好文 时间:
2014-05-09 00:04:01
阅读次数:
304