sudo apt-get autoremove openjdk-7-jresudo apt-get purge openjdk*java -versionNo openjdk available now, and then it works.
分类:
系统相关 时间:
2014-10-31 01:04:01
阅读次数:
273
载入类
我们看看之前的文章,这一节就从SimpleWrapper的loadServlet讲起。
SimpleWrapper.java如下(省略了try catch及其他部分代码)
public Servlet loadServlet() throws ServletException {
...
String actualClass = servletClass;...
分类:
其他好文 时间:
2014-10-30 17:16:50
阅读次数:
133
Java的类载入器
详细资料见
http://blog.csdn.net/dlf123321/article/details/40431297
首先说明两个术语
仓库(repository),表示类加载器会在哪里搜索要载入的类;
资源(resource),知道一个类载入器中的DirContext对象,它的文件跟路径指的就是上下文的文件跟路径。
在tomcat中,我们使用了自定义载入...
分类:
其他好文 时间:
2014-10-29 14:55:44
阅读次数:
218
这是一本非常有意思的书,详细的介绍了构造WEB服务器的相关技术和tomcat设计的模型tomcat深入剖析.pdfServlet3.1规范(最终版).pdfhttprfc2616.pdf
分类:
其他好文 时间:
2014-10-29 14:29:38
阅读次数:
143
原文转自http://stackoverflow.com/questions/21085261/apprtcdemo-with-local-server-works-between-browsers-but-not-android-native-to-brI am developing a chat...
分类:
移动开发 时间:
2014-10-28 17:05:45
阅读次数:
344
I explain what you need to start working with PHP. Before doing so, I think it'll be useful to explain what PHP is and how it works. PHP stands for PH...
分类:
Web程序 时间:
2014-10-28 09:18:03
阅读次数:
276
Slices are created with themakefunction. It works by allocating a zeroed array and returning a slice that refers to that array:a := make([]int, 5) //....
分类:
其他好文 时间:
2014-10-27 01:44:02
阅读次数:
183
STAlertViewThe idea of this component is to improve the readability while using the native UIAlertView. The UIKit alert view works with delegates. Whe...
分类:
其他好文 时间:
2014-10-26 21:08:40
阅读次数:
180
??
一、从Map到Reduce
MapReduce其实是分治算法的一种实现,其处理过程亦和用管道命令来处理十分相似,一些简单的文本字符的处理甚至也可以使用Unix的管道命令来替代,从处理流程的角度来看大概如下:
cat input | grep | sort | uniq -c | cat > output
# Input -> Map -> Shuffle & Sort -> R...
分类:
其他好文 时间:
2014-10-26 17:06:35
阅读次数:
278
在分析monkey源码的时候有些背景知识没有搞清楚,比如在看到monkey是使用windowmanager的injectKeyEvent方法注入事件的时候,心里就打了个疙瘩,这种方式不是只能在当前应用中注入事件吗?Google了下发现了国外一个大牛有留下蛛丝马迹描述这个问题,特意摘录下来并做相应部分的翻译,其他部分大家喜欢就看下,我就不翻译了。
How it works
Behin...