- 浏览: 142107 次
- 性别:
- 来自: 广东广州
最新评论
-
jcxdxg:
代码非常给力,谢谢
iText-对PDF进行数字签名和文档加密 -
machunlin:
我根据你的代码写出来运行报错,请问是什么原因啊?以为是缺少ja ...
iText-对PDF进行数字签名和文档加密 -
kong6001:
machunlin 写道我了个去,楼主,你能把完整的代码贴出来 ...
iText-对PDF进行数字签名和文档加密 -
machunlin:
我了个去,楼主,你能把完整的代码贴出来吗?你这代码吧,不全,想 ...
iText-对PDF进行数字签名和文档加密 -
georgezeng:
cool
GWT-解决ui.xml代码提示假死
文章列表
Mac OS/Linux命令集合
- 博客分类:
- Linux
ps 进程查看
ps -ef|grep java
netstat命令
netstat -an | grep 3306
lsof命令
通过list open file命令可以查看到当前打开文件,在linux中所有事物都是以文件形式存在,包括网络连接及硬件设备。
lsof -i:80
-i参数表示网络链接,:80指明端口号,该命令会同时列出PID,方便kill
// Note: must set timeout,otherwise alway wait here.
// set time out
// conntction timeout 20s
httpclient.getParams().setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 20000);
// transfer time 60s
httpclient.getParams().setParameter(CoreConn ...
Maven-Maven 常用命令
- 博客分类:
- Maven
下载依赖包源码
mvn dependency:sources
使用参数: -DdownloadSources=true 下载源代码jar。
-DdownloadJavadocs=true 下载javadoc包。
1、在gwt-user-xxx.jar 找到com.google.gwt.uibinder.resources.
解压这三个文件:
com.google.gwt.user.client.ui.xsd
uibinder.xsd
xhtml.ent
2、配置eclipse
Window -> Preferences -> Xml -> XmlCatalog -> User Specified Entries -> Add.. -> FileSystem
分别添加刚才的三个文件:
配置如下:
key: urn:import:c ...
compile默认的scope,表示 dependency 都可以在生命周期中使用。而且,这些dependencies 会传递到依赖的项目中。
provided跟compile相似,但是表明了dependency 由JDK或者容器提供,例如Servlet AP和一些Java EE APIs。这个scope 只能作用在编译和测试时,同时没有传递性。
runtime表示dependency不作用在编译时,但会作用在运行和测试时
test表示dependency作用在测试时,不作用在运行时。
system跟provided 相似,但 ...
iText-带formPDF复制,乱码解决方式
- 博客分类:
方法1:使用iText中文支持包(见附件iTextAsian-for-5.x-1.0)然后重新设置表单字体即可
if (fields.getFields() != null || !fields.getFields().isEmpty()) {// change field
ByteArrayOutputStream exchangeByteOut = new ByteArrayOutputStream();
PdfStamper stamper = new PdfStamper(originReader, exchangeByteOut);
...
非标准Maven项目运行java类时会报 could not find the main class,由于Maven的输出路径和Eclipse的不一样,所以导致该问题,设置一下Maven的输出路径即可
<build>
<sourceDirectory>src</sourceDirectory>
<outputDirectory>WebContent/WEB-INF/classes</outputDirectory>
<testSourceDirectory>test</testS ...
iText-为PDF添加水印
- 博客分类:
private static void addWatermark(PdfStamper stamper, Rectangle pageRectangle, int waterMarkCount,
String waterMarkName) {
PdfContentByte content;
BaseFont base = null;
try {
//设置字体
base = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.WINANSI, BaseFont.NOT_EM ...
try {
PdfReader reader = null;
reader = new PdfReader(domainDoc.getDoc());
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
com.itextpdf.text.Document document = new com.itextpdf.text.Document();
PdfCopy copy = new PdfCopy(document, byteOut);
d ...
jQuery-提示插件
- 博客分类:
- jQuery
Poshy Tip - jQuery Plugin for Stylish Tooltips
http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/
Maven-批量上传Jar 到私服 Bat
- 博客分类:
- Maven
利用Bat脚本,批量上传当前目录的jar 到私服
@echo off
:: init params
set version=1.0.0
set groupId=XX
set artifactIdPrefix=portal
set url=http://XX:8082/content/repositories/portal/
set repositoryId=bglserver
set deployFile=*.jar
echo Searching jar file...
rem 启用"延缓环境变量扩充"
SETLOCAL ENABLEDELA ...
Manve-把包安装到本地库和私服
- 博客分类:
- Maven
安装到本地库mvn install:install-file -DgroupId=au.com.bglcorp -DartifactId=portal-xmlschemas -Dversion=1.0 -Dfile=xmlschemas.jar -Dpackaging=jar -DgeneratePom=true
安装到私服(Nexue)
jar包:
mvn deploy:deploy-file -DgroupId=au.com.bglcorp -DartifactId=portal-jar -Dversion=1.0.0 -Dpackaging=jar -Dfile=bglp ...
详细说明
http://download.oracle.com/javase/1.4.2/docs/tooldocs/windows/keytool.html
常用操作:1、Create a keystorekeytool.exe -genkey -alias dennyStcert -keystore denny.keystore -storepass "store_password" -keypass "key_passwrod" -keyalg "RSA"keytool.exe -genkey -alias jamesS ...
@Autowired(required=true) private HttpServletRequest request;
参考
http://tech.it168.com/a2010/1108/1123/000001123274_all.shtml
http://www.developer.com/java/article.php/3908561/article.htm
6年了,我们终于等来了Maven 3,Maven 2虽然达到了一定的高度达,但它有两个死穴,一是难以扩展,二是它的代码难以理解,在Maven 3中,许多功能都进行了改造,消灭了Maven 2一直被人诟病的许多问题,在这篇文章中,我将介绍Maven 3的10大新特性。
1、向后兼容
Maven创始人,Sonatype公司 ...