- 浏览: 142140 次
- 性别:
- 来自: 广东广州
最新评论
-
jcxdxg:
代码非常给力,谢谢
iText-对PDF进行数字签名和文档加密 -
machunlin:
我根据你的代码写出来运行报错,请问是什么原因啊?以为是缺少ja ...
iText-对PDF进行数字签名和文档加密 -
kong6001:
machunlin 写道我了个去,楼主,你能把完整的代码贴出来 ...
iText-对PDF进行数字签名和文档加密 -
machunlin:
我了个去,楼主,你能把完整的代码贴出来吗?你这代码吧,不全,想 ...
iText-对PDF进行数字签名和文档加密 -
georgezeng:
cool
GWT-解决ui.xml代码提示假死
文章列表
越来越觉的JRuby是个很有前途的项目,结合Ruby的性感语法和java极其丰富的类库,况且有团队持续不断地修正bug、改进性能,这样的玩意完全有成为“少男杀手”的潜质。JRuby wiki上列出了性能优化的四条建议:1、调优编译器,JRuby早就弃暗投明跟随XRuby走上了编译这条牛B的道路,将Ruby Script编译成字节码,因此这个环节是断断不能忽略的。两种编译方式:AOT模式:直接生成class文件,脱了Ruby这层皮,咱就是人见人“爱”的java了。JIT模式:充分利用成熟的jit技术,咱不全脱,朦胧美才是真的美。默认从0.9.9版本开始就是开启的,关闭的话(要我说还不如全脱)
j ...
- 2008-12-14 12:22
- 浏览 1126
- 评论(0)
Linux 使用localhost访问glassfish ,回复404
修改config/domain.xml
<virtual-server hosts="${com.sun.aas.hostName}".....
添加localhost
<virtual-server hosts="${com.sun.aas.hostName},localhost"
- 2008-12-02 21:47
- 浏览 1458
- 评论(0)
<style type="text/css">
<!--
.readonly {
background-color:expression(readOnly?'#ccc':'#fff');
}
-->
</style>
<script>
设定表单的calss 为readonly
- 2008-11-25 16:32
- 浏览 1259
- 评论(0)
PersistJS: Cross Browser Client-Side Persistent Storage Without Cookies
http://pablotron.org/?cid=1557
- 2008-11-11 10:27
- 浏览 1148
- 评论(0)
Looks to me like multicast isn't enabled properly.
First, check using "ifconfig -a" that multicast is enabled on your network interfaces.
eth0 Link encap:Ethernet HWaddr 00:E0:81:51:41:39
inet addr:192.168.0.6 Bcast:192.168.255.255 Mask:255.255.0.0
UP BROADCAST RUNNING MULTICAST MTU:1500 ...
- 2008-10-06 11:27
- 浏览 3912
- 评论(0)
public class CompressImage {
private static final Log log = LogFactory.getLog(CompressImage.class);
private int destWidth;// 压缩后的长
private int destHeight;// 压缩后的高
/**
* 指定压缩后的长度,按比例计算出压缩后的高度
*
* @param width
*/
public CompressImage(int width) {
this.destWidth = width;
}
/**
* ...
- 2008-09-06 11:51
- 浏览 1841
- 评论(0)
1、配置数据源文件 数据源必需以 **-ds.xml作为文件名,并放在server\default\deploy下,不同数据库配置不同,可参考\docs\examples\jca下的数据源配置 下面配置多个数据源例子:
<?xml version="1.0" encoding="GBK"?>
<!-- ===================================================================== -->
<!-- ...
- 2008-06-24 14:49
- 浏览 2899
- 评论(0)
SQL to Select a random row from a database table
来源:
http://www.petefreitag.com/item/466.cfm
There are lots of ways to select a random record or row from a database table. Here are some example SQL statements that don't require additional application logic, but each database server requires differen ...
- 2008-05-22 09:49
- 浏览 1533
- 评论(0)
Spring 配置数据源JNDI引用
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName"><value>java:comp/env/jdbc/aurora_contact_web</value></property>
</bean>
或者
<jee:jn ...
- 2008-05-20 12:42
- 浏览 3408
- 评论(0)
EJB所有返回值必须实现 Serializable接口,否则会报些莫名其妙的错误.
并把 Glassfish 的 appserv-rt.jar 和 javaee.jar 包 客户程序的类路径
@Stateless(mappedName="ejb/MainActionJNDI")//远程JNDI
@Name("MainAction")
@Interceptors({org.jboss.seam.ejb.SeamInterceptor.class})
@AutoCreate
public class MainActionBean impleme ...
- 2008-05-07 16:22
- 浏览 4164
- 评论(0)
System.out输出重定向
- 博客分类:
- IO
dom4j格式化输出为String作例子
/**
* 打印文档,String输出
*
* @param doc
* @param encoding
*/
public static String printString(Document doc, String encoding) {
if (encoding == null)// 默认为UTF-8编码
{
encoding = "UTF-8";
}
String docStr = null;
OutputFormat format = Outpu ...
- 2008-04-08 11:43
- 浏览 2881
- 评论(0)
下载的zip版的tomcat要注册为windows系统服务就要运行bin/service.bat
加载系统服务为
service install tomcat6
卸载系统服务为
service remove tomcat6
可以对service.bat文件做一些其他修改,使tomcat更加能满足我们各种不同需求时的要求
1. 如果让tomcat编译jsp文件,就在PR_CLASSPATH中加入J2SDK的tools.jar
修改前:
set PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar
修改后:
set PR_CLASSPATH=%JAV ...
- 2008-03-17 14:00
- 浏览 7412
- 评论(0)
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.org/config/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.or ...
- 2008-01-25 22:41
- 浏览 4573
- 评论(2)
OSWorkflow
www.opensymphony.com/osworkflow/
http://wiki.opensymphony.com/pages/viewpage.action?pageId=2481
- 2007-07-18 09:09
- 浏览 1197
- 评论(0)
java 代码
public class TestReadJar {
/**
* @param args
*/
public static void main(String[] args) throws IOException {
String jarName="C://VODOSSClient.jar";
String fileName="client.properties"; ...
- 2007-06-29 16:06
- 浏览 3471
- 评论(0)