- 浏览: 66926 次
- 性别:
- 来自: 深圳
最新评论
-
x334085347:
顶一a 下
二进制、八进制、十进制、十六进制之间转换 -
zhsh666:
As a rule of thumb, any time yo ...
java equals == hashcode -
zhsh666:
关于java的hashCode方法 ( ...
java equals == hashcode -
dyf4256dyf:
...
Java构造函数
文章列表
NAT的基本工作原理是,当私有网主机和公共网主机通信的IP包经过NAT网关时,将IP包中的源IP或目的IP在私有IP和NAT的公共IP之间进行转换。由于NAT实现是私有IP和NAT的公共IP之间的转换,那么,私有网中同时与公共网进行通信的主机数量就受到NAT的公共IP地址数量的限制。为了克服这种限制,NAT被进一步扩展到在进行IP地址转换的同时进行Port的转换,这就是网络地址端口转换NAPT(Network Address Port Translation)技术。NAPT与NAT的区别在于,NAPT不仅转换IP包中的IP地址,还对IP包中TCP和UDP的Port进行转换。这使得多台私有网主机利 ...
- 2009-11-23 09:05
- 浏览 1949
- 评论(0)
法则一:如果你创建了他,那么就要释放他在本章节的前一部分,你知道了创建SWT控件,相应的本地控件也被创建了。也就是说,调用了SWT的构造函数,底层的本地资源也被创建了。所以如果你写下如下代码,那么你就创建了一个SWT颜色对象,那么也就在系统的底层资源里分配了一个颜色资源:Color color = new Color(display, 255, 0, 0); // Create a red Color法则一说明了如果你创建了他,那么你就要在使用完时释放他,像下面一样:color.dispose(); // I create it, so I dispose it但是,如果你没有使用构造函数来申请 ...
- 2009-11-17 16:51
- 浏览 4394
- 评论(0)
再次遇到shell dispose 和 close 方法问题?????
- 2009-11-17 16:40
- 浏览 980
- 评论(0)
import java.io.*;
class ExceptionAdapter extends RuntimeException {
private final String stackTrace;
public Exception originalException;
public ExceptionAdapter(Exception e) {
super(e.toString());
originalException = e;
StringWriter sw = new StringWriter();
e.printStackT ...
- 2009-11-12 22:34
- 浏览 1036
- 评论(0)
java.util.logging
1.Logging Basic Logging
Logger.global.info("File->Open menu item selected");
Logger.global.setLevel(Level.OFF); at an appropriate place (such as the beginning of main), then all logging is suppressed.
这样日志就不会输出了。
2.Advanced Logging
Logger myLogger ...
- 2009-11-12 22:04
- 浏览 858
- 评论(0)
1.异常的分类
The Error hierarchy describes internal errors and resource exhaustion inside the Java runtime system. You should not throw an object of this type. There is little you can do if such an internal error occurs, beyond notifying the user and trying to terminate the program gracefully ...
- 2009-11-12 17:15
- 浏览 780
- 评论(0)
The SWT event-processing cycle is depicted in figure4.1. It begins with the operating system’s event queue, which records and lists actions taken by the user. Once
an SWT application begins running, its Display class sorts through this queue
using its readAndDispatch() method and msg field, ...
- 2009-10-27 00:25
- 浏览 698
- 评论(0)
表名admin 字段名 adminId, adminName,adminPass,adminAge表名class 字段名 classId,className,classInfo
select top 2 * from admin order by adminId desc //返回最大的前两个
select top 2 * from admin order by adminId asc //返回最小的前两个
select len(adminId) from admin //返回adminid长度
select left(adminName,2) from admin
...
- 2009-10-26 23:11
- 浏览 1035
- 评论(0)
1.相关的软件
Microsoft SQL server 2005 Express Edition
SQL Server Management Studio
SQL Server 2005 driver for JDBC
数据库驱动中有一个dll文件 sqljdbc_auth.dll要拷贝到system32目录下
2.设置SQLEXPRESS服务器:
a.打开SQL Server Configuration Manager -> SQLEXPRESS的协议 -> TCP/IP b.右键单击启动TCP/IP c.双 ...
- 2009-10-26 23:08
- 浏览 1814
- 评论(0)
标准级别:DEBUG<INFO<WARN<ERROR<FATAL
#设置级别和目的地 log4j.rootLogger=debug,appender1 #输出到控制台 log4j.appender.appender1=org.apache.log4j.ConsoleAppender #设置输出样式 log4j.appender.appender1.layout=org.apache.log4j.PatternLayout #自定义样式 # %r 时间 0 # %t 方法名 main # %p 优先级 DEBUG/INFO/ERRO ...
SWT下面的操作系统平台需要显示的分配和释放系统资源。SWT的设计思想是,在一些小的窗口部件上,它采用的是底层操作系统的映射机制。因此SWT规定,对于用户显示分配的系统资源,需要用户显示的释放。在SWT中,这个操作是 ...
- 2009-10-20 23:06
- 浏览 1049
- 评论(0)
swt中在shell上设置快捷键
- 博客分类:
- SWT/JFace
要对一个shell设置快捷键添加监听器事件时,直接在shell上添加一个监听器的方法行不通。如以下方法:
addKeyListener(new KeyAdapter() {
public void keyPressed(final KeyEvent e) {
System.out.println(e.keyCode);
MessageDialog.openInformation(null, e.keyCode+"", e.keyCode+"");
}
});
这种方法在shell上注册的监听器没有用。不知道 ...
- 2009-10-20 22:04
- 浏览 3564
- 评论(0)
在编写程序时,经常会有一些经验写法,这种写法的目的就是在考虑代码的效率和异常的处理方面的问题。所以有必要不断地积累这方面的知识。以下就是不断积累的结果,以备不断的巩固。
1.if(null==str||"".equals(str)).......此处 将null和空串放在equals和==方法前面,这样做的上的可以防止抛出空指针的异常。
2.
geStrName{return strName}...
if(null==getStrName()|| "".equals(getStrName())){.......}
以上写法在一个 ...
- 2009-10-19 09:15
- 浏览 688
- 评论(0)
SWT中设置控件的Tab顺序
- 博客分类:
- SWT/JFace
使用Composite的setTabList(Control[])方法可以设置控件的Tab顺序composite.setTabList(new Control[]{button, combo, text});
shell.setTabList(...)
group.setTabList(...)...注意:button, combo, text等各个控件必须在一个容器(composite)中;composite为控件的parent容器,Composite的子类.
- 2009-09-25 15:48
- 浏览 2369
- 评论(0)
Although C++ introduced the exception specification, Java is the only mainstream language that enforces the use of specifications with "Checked Exceptions." In this discussion I will examine the motivation and outcome of this experiment, and look at alternative (and possibly more us ...
- 2009-09-25 09:36
- 浏览 704
- 评论(0)