- 浏览: 107687 次
- 性别:
- 来自: 东营
-
最新评论
-
ln987604356:
```说明都没得 看锤子
弹出 div jquery.jmpopups-0.5.1.js -
yanshaozhi:
snowolf 写道工作中的收获,远远不只是工资,但往往首先需 ...
完全成为了一个职员 -
snowolf:
工作中的收获,远远不只是工资,但往往首先需要考虑工资。因为你要 ...
完全成为了一个职员 -
onex:
相比于其他的那两位,我觉得你很不错。很欣赏你。 你继续抱着学习 ...
完全成为了一个职员
文章列表
public class DB {
private String url = "jdbc:mysql://localhost:3306/test";
private String user = "root";
private String pwd = "yanshaozhi";
public Connection getcon() throws InstantiationException,
IllegalAccessException, ClassNotFoundException, SQLExce ...
- 2009-01-17 11:52
- 浏览 815
- 评论(0)
linux 下删除目录(含非空)
rm -rf 目录名
linux 连接 linux
sudo ssh root@iP_address
- 2009-01-07 12:50
- 浏览 697
- 评论(0)
jackrabbit 保存处理
- 博客分类:
- JackRabbit学习
if (session.hasPendingChanges())
session.save();
- 2008-12-24 16:31
- 浏览 873
- 评论(0)
InputStream in = node.getProperty("jcr:data").getStream();
ByteArrayOutputStream out = new ByteArrayOutputStream(500 * 1024);
makeThumbnail(in, out);
out.flush();
node.setProperty("dms:Thumbnail", new ByteArrayInputStream(out
.toByteArray()));
node.save();
- 2008-10-23 16:00
- 浏览 1046
- 评论(0)
@scr.property name="sling.servlet.paths" value="/system/services/download"
* @scr.property name="sling.servlet.methods" values.0="POST"
@scr.property name="sling.servlet.paths" 为访问路径
- 2008-10-21 10:05
- 浏览 867
- 评论(0)
-Dcom.sun.management.jmxremote -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=30303,server=y,suspend=n
- 2008-10-20 13:11
- 浏览 830
- 评论(0)
public void zipFile() throws IOException {
String dir="e:/testPicture";
File d = new File(dir);
if (!d.isDirectory())
throw new IllegalArgumentException("Not a directory: " + dir);
String[] entries = d.list();
byte[] buffer = new byte[4096]; // Create a buffer for co ...
- 2008-10-20 10:26
- 浏览 2163
- 评论(0)