本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
Velocity中VM文件找不到问题的解决
在Velocity中默认加载vm文件的类是FileResourceLoader,而这个类是用File来读取vm文件的。所以在不同的环境下,File的根目录是不一样的,如在eclipse项目中就是项目的文件夹为根目录 。
解决vm找不到的方法我知道的有这两种:
1. 设置把Velocity(RuntimeConstants)中的FILE_RESOURCE_LOADER_ ...
使用bitmap缩略图,解决图片大小超过预算的VM的问题
Android 2.3.3
Eclipse Version: 3.7.0
LogCat
Activity中显示大图,部分源代码如下:
try {
bitmap = BitmapFactory.decodeFile("/" + nokia.getBitmap(), opt);
} catch (Except ...
eclipse错误java was started but returned exit code =-805306369
这个错误原因可能有很多,这只是一只可能的解决方法,如下:
主要原因是eclipse.ini配置文件错误了,配置文件中-vm参数设置错误,或者没有-vm这行,在windows7系统下需要使用 " / " 而不是 " \ "
原配置文件:
-startup
plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20 ...
Wicket生成JavaScript
一,前言
介绍用Wicket生成JavaScript比较方便的方法。
二,直接生成
参考 : https://cwiki.apache.org/WICKET/calling-wicket-from-javascript.html
HTML
<script type="text/javascript" wicket:id=&q ...
facebook hiphop php vm 实现概述
facebook hiphop php vm 实现概述
一、src目录概述:
compiler:编译器
expression:php的expression所对应的ast node使用的数据结构
statement:对应php的语句
parser:生成出来ast
analysis:静态语义分析(变量类型、作用域、常量表、变量表、函数表……)
ff ...
Eucalyptus上虚拟机的一段ip配置的内容
Eucalyptus provides the network infrastructure that enables access to and from VM instances. Typically, these VMs reside on virtual subnets that must be configured to be separate and distinct from the ...
java的server模式
The Java HotSpotTM Server VM is Sun Microsystem's solution for providing fast, reliable JavaTM technology in the enterprise server environment.
1、更安全
2、更强壮
3、动态编译
4、更快
http://java.sun.com/products/h ...
jprofiler远程监控配置问题
解决:Error occurred during initialization of VM
Could not find agent library on the library path or in the local directory: jprofilerti
查找资料后,发现是版本依赖的问题,查看命 ...
[转]Oracle VM下如何使宿主机XP与虚拟机Ubuntu共享文件
环境:主机操作系统是Windows XP,虚拟机是Ubuntu 11.04,虚拟机是VirtualBox 4.1.2。
1. 安装增强功能包(Guest Additions)
安装好Ubuntu 11.04后,运行Ubuntu并登录。
然后在VirtualBox的菜单里选择"设备(Devices)" -> "安装增强功能(Instal ...
bitmap设置图片尺寸缩小,避免内存溢出/OutOfMemoryError的优化方法
我们都知道Android的Dalvik VM为一个应用提供了大约16MB的内存,一般我们处理超过8MB的图片将会出现OutOfMemoryError异常(内存溢出异常),报如下错误:
20155392-byte external allocation too large for this process.
VM won't let us allocate 20155392 bytes
Ja ...