- 浏览: 86938 次
- 性别:
- 来自: 上海
最新评论
-
ileson:
honeyweishu 写道楼主,我有问题了, ...
Apache Server + Tomcat 集成配置 -
ileson:
回复九楼,经过我的测试,要把注释另起一行。。不能和配置文本放到 ...
Apache Server + Tomcat 集成配置 -
xianzufu:
jar包里面除com外的所有文件及文件夹都删掉,但初始化时还 ...
华为短信接口问题 -
mojunbin:
出现问题了。按照楼主配置出现了九楼问题:QQ:98210924 ...
Apache Server + Tomcat 集成配置 -
tanjunxiaoge:
与九楼同样的问题,求解
Apache Server + Tomcat 集成配置
文章列表
iText是著名的开放源码的站点sourceforge一个项目,是用于生成pdf文档的一个java类库.通过iText不仅可以生成pdf或rtf的文档,而且可以将XML、Html文件转化为PDF文件.
在http://www.lowagie.com/iText/download.html 下载itext.jar文件,加入到classpath中,就可以使用它了.
下面的例子用来生成一个HelloWorld.pdf文件,并在其中写入"Hello World"语句.
public static void main(String[] args) {
Document doc ...
<script type="text/javascript">
var w3c=(document.getElementById)? true: false;
var agt=navigator.userAgent.toLowerCase();
var ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1) && (agt.indexOf("omniweb") == ...
- 2008-01-07 23:58
- 浏览 1138
- 评论(0)
关注====================================
http://edojs.com/ 易用的 免费JS界面
http://www.caucho.com/resin-3.0/quercus/tutorial/module/index.xtp/ java与php整合
http://www.800app.com/ 800客CRM
http://www.c3crm.com/ 易客CRM
http://www.jxcsoft.net/ 才智管理软件 进销存
http://www.qianggen.com/ 墙根网 北京吃喝玩乐,单身俱乐部
http://www.xixun.cn ...
Eclipse插件
1.http://subclipse.tigris.org/update svn插件
2.http://update.eclemma.org/ 代码测试覆盖率查看
3.http://m2eclipse.sonatype.org/update/ maven插件,依赖mylyn插件
4.http://propedit.sourceforge.jp/eclipse/updates 属性文件编辑器
5.http://sourceforge.net/pro ...
1.IE显示为blue,firefox显示为red
#box {
color:red !important;
color:blue;
}
<div id="box"> 在不同的浏览器下,这行字的色应该不同!</div>
2.提升优先级
#box div{
color:red;
}
important_false{
color:blue;
}
important_true{
color:blue !important;
}
<div id="Box&qu ...
很多情况下我们需要定时执行一些任务,这就需要用到定时器这个东东,定时器的实现有很多种方式,目前也有很多流行的框架提供了这种功能,今天我们介绍的这种方式是JDK自带的定时器:
下面以一个示例进行分析:
public calss TaskManager implements ServletContextListener {
private Timer timer;
public void contextInitialized(ServletContextEvent arg0) {
timer = new Timer("任务名称" ...
- 2007-12-20 12:29
- 浏览 1534
- 评论(0)
1. 文件上传逻辑
public void fileUpload(HttpServletRequest request){
String uploadPath = "fileUpload";
String tmpPath = "tmpUpload";
if (!new File(uploadPath).exists()) {
new File(uploadPath).mkdirs();
}
if (!new File(tmpPath).exists()) {
new File(tmpPath).mkdirs ...
- 2007-12-20 11:05
- 浏览 1110
- 评论(0)
public void createSmallPic(int height, int width){
String smallPath = "smallPath"; // 小图存放目录
if(!new File(smallPath).exists()) {
new File(smallPath).mkdirs();
}
double ratio = 0.0;
File file = new File("d:/a.jpg"); // 大图路径
BufferedImage bi = ImageIO.re ...
- 2007-12-20 11:00
- 浏览 1103
- 评论(0)