
java
iteye_16184
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
myeclipse8.6正式版下载地址
http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.6.0-win32.exe原创 2010-08-23 11:12:50 · 148 阅读 · 0 评论 -
javax.crypto.BadPaddingException: Given final block not properly padded
Exception in thread "main" javax.crypto.BadPaddingException: Given final block not properly padded 我是在对CipherOutputStream cos=new CipherOutputStream(fos,cipher); 输出流加密后的密文进行解密的时候出现的(输入流就没有出现这个问题),网上...原创 2010-09-25 15:57:27 · 366 阅读 · 0 评论 -
改变Eclipse或者MyEclipse新建文件的默认编码
eclipse的: window-preferences-General-ContentType 的右边窗口,改成gbk也可以,utf-8也行。 myEclipse的: window-preferences-myEclipse-files and editors-jsp里面有encoding,改这里为ISO10646/UTF-8. eclipse和java文件编码设定 ...2010-03-03 10:54:43 · 111 阅读 · 0 评论 -
Weblogic JSP 编译错误解决办法
错误信息:java.lang.ClassCastException: antlr.CommonToken解决: 1 去掉 weblogic.xml 中的前加载配置:(设置为flase或删除如下相关字段) false 2、去掉应用中 WEB-INF\lib\ 下的包含antlr.CommonToken类的 antlr*.jar 的包...2010-03-03 10:55:47 · 334 阅读 · 0 评论 -
java -Djava.ext.dirs={lib}
If U are in a hurry to compile code and there is a big list of Jar files to include in the classpath, there U don't have to struggle to include the names of all the jar's in the classpath. There i...2010-03-22 17:08:22 · 255 阅读 · 0 评论 -
java实现word转pdf,pdf转图片
网上word转pdf,pdf转图片的文章到时不少,但完整例子的不多。 最大的问题有两个 (1)都是jdk1.5实现,但我们的开发环境是1.4 (2)依赖jar一大堆,尤其是版本问题,可例子都只提供一个jar包,这就很郁闷了。 附件的例子依赖jar都放好了,两个例子也都能直接用,且是jdk1.4的。 声明:具体代码不是我写的,我只是搬运工 参考文档 (1)http://ww...原创 2012-05-10 14:00:46 · 947 阅读 · 0 评论