java
文章平均质量分 64
gaohaiyang
这个作者很懒,什么都没留下…
展开
-
java JVM虚拟机选项 Xms Xmx PermSize MaxPermSize 区别
<br />Eclipse崩溃,错误提示:<br />MyEclipse has detected that less than 5% of the 64MB of Perm <br />Gen (Non-heap memory) space remains. It is strongly recommended<br />that you exit and restart MyEclipse with new virtual machine memory<br />paramters to increas转载 2010-12-07 10:19:00 · 4244 阅读 · 0 评论 -
new Date() 和实际时间差8小时的问题
记得以前new Date时间是对的,今天突然发现运行Date now = new Date()时,获取出来的时间比系统的时间少8小时。双击系统任务栏(os为xp sp2)的时间,在日期和时间属性窗口中查看时区没有问题,是(GMT+8:00) 北京....等等。但是通过java代码:System.out.println(System.getProperty("user.timezone"原创 2011-12-05 17:13:55 · 24493 阅读 · 0 评论 -
Java HotSpot VM Options
This document provides information on typical command-line options and environment variables that can affect the performance characteristics转载 2011-08-28 17:13:49 · 932 阅读 · 0 评论 -
JDK1.5和JDK1.6无法交替使用。
<br />jdk1.6去加载jdk1.5编译的类时,由于系统参数sun.lang.ClassLoader.allowArraySyntax的默认值不同(1.5中默认为true,1.6中默认为false),可能出现invalid type code: 31的错误。 <br /> <br />而使用jdk1.5去加载jdk1.6编译的类时,又可能出现java.lang.UnsupportedClassVersionError: Bad version number in .class file的错误,看来,j原创 2011-05-17 16:27:00 · 1415 阅读 · 0 评论 -
java.lang.UnsupportedClassVersionError: Bad version number in .class file (unable to load class com.pdfjet.PDF)
今天在学习dhtmlx一个把grid导出为pdf的小例子时,出现如下错误:java.lang.UnsupportedClassVersionError: Bad version number in .class file (unable to load class com.pdfjet.PDF) at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1851) at org.apach原创 2011-05-17 16:17:00 · 2263 阅读 · 0 评论 -
解决 java.util.MissingResourceException: Can't find bundle for base name com...config, locale zh_CN 错误
<br />解决 java.util.MissingResourceException: Can't find bundle for base name com...config, locale zh_CN 错误Solve java.util.MissingResourceException: Can't find bundle for base name com...config, locale zh_CN<br />at java.util.ResourceBundle.throwMissingReso转载 2011-02-22 12:15:00 · 7809 阅读 · 1 评论 -
java 基本命令 ——未完待续
一:javacjavac [ options ] [ sourcefiles ] [ @files ] 参数可按任意次序排列。options 命令行选项。 sourcefiles 一个或多个要编译的源文件(例如 MyClass.java)。 @files 一个或多个对源文件进行列表的文件。 例如一个名字为mysource.txt文本文档有如下内容: C:/javaTest/src/com/abc/HelloWorld.java C:/javaTest/src/com/abc/SayHelloWorld.j原创 2011-03-02 15:44:00 · 1025 阅读 · 0 评论 -
invalid type code: 31和java虚拟机参数sun.lang.ClassLoader.allowArraySyntax
<br />Unable to connect to 't3://localhost:7001': invalid type code: 31.<br />今天在使用weblogic 命令行工具部署EJB的时候,出现如下的问题:<br />C:/Documents and Settings/hg06574>java -version<br />java version "1.6.0_05"<br />Java(TM) SE Runtime Environment (build 1.6.0_05-b13)<b原创 2011-01-09 16:36:00 · 8346 阅读 · 0 评论 -
java 命令
<br />1:转换编码<br />native2ascii -encoding UTF-8<br />例子:<br />1.在d盘下,用Notepad++新建一个文本文档test.txt,编码格式选择为 以UTF-8 无BOM格式编码,保存。<br />2.把在页面出现乱码的文字(比如一些土耳其文)贴到test.txt中。<br />3.dos窗口进入到d盘根目录<br />4.运行命令 native2ascii -encoding UTF-8 test.txt ok.txt<br />5.进入d盘,打开原创 2011-01-03 23:28:00 · 976 阅读 · 0 评论 -
闭锁CountDownLatch与栅栏CyclicBarrier
原文地址:http://blog.csdn.net/lmc_wy/article/details/7866863最近在看java并发相关的书籍,有一些同步的知识是平常不常用但是觉得会很有用的东西,这里参考别人的文章和自己的理解,将闭锁和栅栏的用途与区别简单描述一下。闭锁:一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。即,一组线转载 2015-03-31 14:42:30 · 1520 阅读 · 0 评论