- 浏览: 48174 次
- 性别:
- 来自: 北京
最新评论
-
unique.wu:
Hillen.chan 写道仁兄:select distinc ...
HQL distinct使用 -
Hillen.chan:
仁兄:
select distinct new test.Te ...
HQL distinct使用 -
unique.wu:
chinaJ10 写道哥们,我怎么弄也只是显示竖线,不显示文本 ...
jsp页面打印条形码 -
nimoran:
我也是怎么弄也只是显示竖线,不显示文本,
<img sr ...
jsp页面打印条形码 -
chinaJ10:
哥们,我怎么弄也只是显示竖线,不显示文本,<img sr ...
jsp页面打印条形码
文章列表
windows server2012r2 datacenter版本的windows安装出现的问题。
安装 micorsoft identity extensions 找不到 “IDFF83.tmp.msi”的解决办法。
找一台可以正常的安装机器,在安装这个文件的进程中,去到当前登录账户的临时目录搜索
到这个文件,拷贝到当前找不到文件的机器即可。
个人做的小工具分享给大家~~。
支持从压缩文件搜索文件,特别是根据部分类文件名在jar里查找文件,比较方便,效率也还不错。
也支持从目录查找
http://pan.baidu.com/s/1feYaM
开发人员要远离wifi共享精灵之类的软件
以前似乎发现过这样的问题,wifi共享精灵打开,会改变或者造成本地的客户端通过127.0.0.1连不上本地的服务器端。。
比如当前打开的视图中,焦点是在左边的层级树上,选中的是某个java文件,点击菜单,会在windows资源管理器中打开该java文件所在的目录,如果是class文件,则会打开该class文件所在的目录,或者该class文件所在jar的目录。
如果焦点在编辑区,则会定位当前编辑区的文件。xml,等资源文件同样可以定位。
适用于eclipse3.7以上的版本。。
执行存储过程时提示
对象限定符的数据库名称部分必须是当前数据库的名称。
折腾老半天,后来把存储过程名称改了就ok了
估计是sqlserver保留的关键字。
只是这个提示信息台让人费解了。
导入excel:
excelexec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
go
declare @ttable varchar(20)
set @ttable='newtable'
if exists (select 1 from sysobjects where name=@ttable and xtype='u')
exec('drop table ' + @ttable)
SELE ...
public class TestZero {
public static void main(String[] args) {
System.out.println(1 / 0f);
System.out.println(1f / 0);
}
}
猜猜运行结果是什么?
InfinityInfinity
编辑好 MANIFEST.MF 文件,然后对 test源文件夹进行打包,在命令行下切换的test上一级目录
执行如下命令,即会生成一个test.jar 文件
jar cvfm test.jar MANIFEST.MF test
在table标签中
style="table-layout: fixed;"
td标签中使用
style= "white-space:nowrap;overflow:hidden;text-overflow: ellipsis; "
HQL查询过滤重复的对象
java 类如下
package test;
public class TestDistinct {
private long id = 0;
private int code = 0;
private String msg = "";
public TestDistinct(){
}
public TestDistinct(int code ,String msg){
this.code = code;
this.msg = msg;
}
public long getId() ...
SVN提交文件后,想再写log
使用svn 的edit log message进行编辑时确定时会有警告
DAV request failed; it's possible that the repository's pre-revprop-change hook
either failed or is non-existent At least one property change failed; repository is uncahnaged
Error setting property "log":
Repository has not been ena ...
jxl是一个韩国人写的java操作excel的工具, 在开源世界中,有两套比较有影响的API可供使用,一个是POI,一个是jExcelAPI。其中功能相对POI比较弱一点。但jExcelAPI对中文支持非常好,API是纯Java的, 并不依赖Windows系统,即使运行在Linux下,它同样能够正确的处理Excel文件。 另外需要说明的是,这套API对图形和图表的支持很有限,而且仅仅识别PNG格式。
使用如下:
搭建环境
将下载后的文件解包,得到jxl.jar,放入classpath,安装就完成了。
基本操作
一、创建文件
拟生成一个名为“test.xls”的Excel文件, ...
- 2009-11-10 13:18
- 浏览 1121
- 评论(0)
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
ActionRedirect redirect = new ActionRedirect(mapping.findForward("doRedirect"));
redirect.addParameter("param1","value1&qu ...
- 2009-11-07 13:31
- 浏览 2170
- 评论(0)
case columnName 就能判断该字段不为Null. 例如
create table test(id int identity,username varchar(20))
go
insert into test(username) values('张三')
go
insert into test(username) values('李四')
go
insert into test(username) values(null)
go
insert into test(username) values(null)
--eg.
select case username ...
- 2009-11-06 10:02
- 浏览 3655
- 评论(0)
给客户安装服务器时遇到问题.
命令行模式下
service.bat install
提示安装成功
在服务里 启动tomcat失败
日志信息
[2009-10-22 09:20:57] [174 javajni.c] [error] 找不到指定的模块。
[2009-10-22 09:20:57] [994 prunsrv.c] [error] failed creating java C:\Program Files\Java\jdk1.6.0_10\jre1.6.0_07\bin\client\jvm.dll
[2009-10-22 09:20:57] [1269 prunsrv.c] [ ...
- 2009-10-22 22:04
- 浏览 3305
- 评论(0)