最近接手一个老项目,使用的是数据库是sql server 2008,框架是springmvc + spring + ibatis,老项目是使用abator插件生成的相关代码,现在需要增加新功能,要添加几张新表,可以目前网上下载的abator插件,在新版的eclippse EE中UI根本打不开,只有使...
分类:
数据库 时间:
2014-12-30 13:07:46
阅读次数:
234
1.null null表示变量没有指向任何对象。 2.值类型 包括 bool、结构体、枚举、int、double、float等等 。在.NET中值类型都继承自ValueType。 3. 引用类型 包括 字符串、数组、类、接口等。在.NET中引用类型都继承自Object。 4. 引用类型和null P...
分类:
其他好文 时间:
2014-12-30 13:09:43
阅读次数:
92
1.What?什么是属性 属性是对字段的封装。当类中有了一个字段以后,为了控制这个字段对外的一些表现(例如可访问性,是只读?只写?或者对自读赋值做一些必要的验证等等)我们把这个字段私有化(private),同时留出一个公共的(public)方法,用于访问这个字段。 这个方法就是属性。 2.Usage...
分类:
Web程序 时间:
2014-12-30 13:07:32
阅读次数:
132
Graphics dc = listView1.CreateGraphics(); Pen redpen = new Pen(Color.Red, 2); dc.DrawEllipse(redpen, 0, 100, 50, 50);像这个画的是个空心的圆...
分类:
Windows程序 时间:
2014-12-30 13:09:49
阅读次数:
2610
股票行情数据 WEB 服务(支持香港、深圳、上海基金、债券和股票;支持多股票同时查询) Endpoint: http://webservice.webxml.com.cn/WebServices/StockInfoWS.asmx 复制 Endpoint Disco: http://webservice.webx...
分类:
Web程序 时间:
2014-12-30 12:05:52
阅读次数:
259
一个管道实际上就是一块共享内存,它有两端,分别用于两个进程的读写。这里介绍下如何在Windows上实现线程之间的管道通信。 参考原文:Multithreaded Pipe Communication on Windows C#多线程管道通信 创建一个管...
分类:
编程语言 时间:
2014-12-30 12:06:20
阅读次数:
174
启动: com.hava.webapp.listener.InitListener init... com.hava.webapp.filter.InitFilter init... com.hava.webapp.serlvet.InitSerlvetinit... 访问: com.hava.webapp.filter.InitFilter doFilter... URI=/I...
分类:
Web程序 时间:
2014-12-30 12:05:20
阅读次数:
154
exercise_2.2.1.scm #lang?racket/base
;;;?[HTDP]?<2.2?变量和程序>?<习题?2.2.1>
;;;?<合约>?Fahrenheit->Celeiue?:?number->number
;;;?<用途>?图形化的操作将华氏温度转化为摄氏温度
(require?...
分类:
其他好文 时间:
2014-12-30 12:03:59
阅读次数:
205
官网http://code.google.com/p/core-plot/ https://github.com/core-plot Using Core Plot in an Application https://github.com/core-plot/core-plot/wiki/Using-Core-Plot-in-an-Application 1. 将Framework目...
分类:
移动开发 时间:
2014-12-30 12:04:31
阅读次数:
250
实现图片上传? 用户必须能够上传图片,因此需要文件上传的功能。比较常见的文件上传组件有Commons FileUpload(http://jakarta.apache.org/commons/fileupload/a>)和COS FileUpload(http://www.servlets.c...
分类:
编程语言 时间:
2014-12-30 12:06:06
阅读次数:
195
以前在做网站的时候,经常会遇到当前页的分类高亮显示,以便让用户了解当前处于哪个页面。之前一直是在每个不同页面写方法。工程量大,也不便于修改。一直在想有什么简便的方法实现。后来在网上查到可以用获取当前...
分类:
Web程序 时间:
2014-12-30 12:05:55
阅读次数:
419
1,格式化显示DUMP信息: 自己动手DUMP一把,模仿thinkPHP的DUMP //?format?var_dump
????function?p($var,?$echo=true,$label=null,?$strict=true)
????{
????????echo?"<br>";
?????...
分类:
Web程序 时间:
2014-12-30 12:05:45
阅读次数:
193
方法一:正则分析法 ? function getQueryString(name) { ? ?var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); ? ?var r = window.location.search.substr(1).match(reg); ? ?if (r != null...
分类:
Web程序 时间:
2014-12-30 12:06:02
阅读次数:
161
using?System;
using?unityEngine;
public?class?Test?:?MonoBehaviour
{
#region?编辑Inspector视图
///?<summary>
///?只能输入?0-1的值
///?</summary>
[...
分类:
编程语言 时间:
2014-12-30 12:03:12
阅读次数:
377
Activity代码: package?com.example.reg;
import?android.app.Activity;
import?android.os.Bundle;
import?android.util.Log;
import?android.webkit.WebView;
import?com.example.reg.bean.MyObject;
...
分类:
移动开发 时间:
2014-12-30 12:04:05
阅读次数:
192
表单验证 Flask-WTF 从?version 0.9.0有了变化,正确要引用wtforms包 正确的写法: from?flask.ext.wtf?import?Form
from?wtforms?import?TextField,?BooleanField
from?wtforms.validators?import?Req...
分类:
其他好文 时间:
2014-12-30 12:03:51
阅读次数:
179