`
文章列表
URL Encoded Characters 转载于:http://www.degraeve.com/reference/urlencoding.php backspace %08 tab %09 linefeed %0A creturn %0D space %20 ! %21 " %22 # %23 $ ...
ArcGis for flex 中QueryTask查询结果限制(1000)问题 转载于:http://www.cnblogs.com/pandy/archive/2011/08/29/2157307.html 查询官网得到解决方案如下: To prevent queries that request unlimited numbers of features (e.g., empty WHERE statements and statements that are always true), use MaxRecordCount to set the maximum num ...
最近装了一个Ubuntu系统 在配置tomcat的时候总是出现这样的问题 Could not load the Tomcat server configuration at /Servers/Tomcat v7.0 Server at localhost-config. The configuration may be corrupt or incomplete. 我首先配置的是tomcat-7.0.27,我以为这不行。后来换成tomcat6.0结果还是报同样的错误 最后导致2个都添加不进去了如图: 解决方案:      1.首先你的eclipse的配置需要重新回复到重装的状态,但是 ...
Ubuntu 12.10 程序图标放到启动器   http://www.mobilelin.in/2012/11/20/set-icon-on-ubuntu-12-10-dash/        从今天起准备在 Mobile Lin 写一些 Ubuntu 的学习心得,主要记录一个菜鸟是怎样从对非 Windows 操作系统一无所知到略懂一二的。肯定会有很多东西是老鸟看了要笑掉牙的,反正我是菜鸟,自己碰到的问题写出来跟大家共享让大家少走弯路应该没错。老鸟看到麻烦在下面评论里留下痕迹再走,新手求带啊!! 我以 eclipse 为例,直接在 Ubuntu 软件中心下载的人可以飞过了, ...
  Product Code:46jw8l8ymfmp2twwbuur8j9gv978m2q2duserial Number:307254password:xs374ca
1. 下载jdk7.0 到官方网站下载最新的jdk7.0 我的电脑是32位的,所以选择最新版本jdk-7u11-linux-i586.tar.gz 2. 将下载来的jdk-7u11-linux-i586.tar.gz放到安装目录下,如我直接放在/usr目录下 3. 切换到/usr目录下 cd /usr 4. 解压jdk sudo tar -zxvf jdk-7u11-linux-i586.tar.gz 5. 接下来是配置环境变量 sudo gedit /etc/profile 6. 在/etc/prifile文件后面添加(提示:这里JDK的路径改为你自己的安装路径) e ...

SelectMethod=cursor

SelectMethod=cursor  SelectMethod=cursor  1.执行多个Statements的操作的时候用   2.需要手动使用事务的时候使用 以上是在使用sqlserver数据库的连接字符串的时候使用过。 例如:jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=071008_03;SelectMethod=cursor 用SQL Server驱动一次select很多数据最好在connection string中加上SelectMethod=Cursor,以利用服务器端游标加快速度,其实不 ...
语法: select 值 新列名 from 表名 示例 select *,'ABCD' word from test   查询结果如下图 其中ABCD为新列的值,word为列名,若列值为数值,不用加引号。 若需要经过判断来添加新列,可以使用case....then语法实现,具体实现请参照sql中case then用法

Extjs 调试工具

Extjs调试利器Firebug 、Illuminations(仅针对Firefox浏览器) Firebug官网地址:http://getfirebug.com/ Illuminations官网地址:http://www.illuminations-for-developers.com/   废话不多说,来看下效果  Illuminations 虽为试用版,但不影响使用
今天用Hibernate操作Mssql2005数据库设置主键竟出了问题,主键设为uuid.String,启动服务时报错:could not interpret id generator strategy: uuid.String查了些资料最后得出结论:在hibernate2.1中,主键生成策略中uuid分为uuid.hex和uuid.string,但是从hib ...

两种单例模式比较

    博客分类:
  • Java
 第一种: public class Test { public static final Test instance=new Test(); private Test(); }    第二种:   public class Test { private static final Test instance=new Test(); private Test(){} public static Test getInstance() { return in ...
设置 Window->Prefrences->General->Startup and Shutdown 把Automatic Update Scheduler的钩去掉    

Java内存模式

    博客分类:
  • Java
 
http://blog.csdn.net/intlgj/article/details/5661472

l.fireFn is undefined

报错原因:给元素或者组件添加了事件监听,找不到该监听事件的执行函数function

Java解惑II

    博客分类:
  • Java
public class Test { public void myMethod(String s) { System.out.println("My String"); } public void myMethod(Object o) { System.out.println("My Object"); } public static void main(String args[]){ ...
Global site tag (gtag.js) - Google Analytics