It’s that time again to choose the tool or technology that we want to brush up on. If you feel like you’ve been working hard at building but maybe not learning as much as you’d like, I’ve got your back covered. Please enjoy the fifth installment of o…
http://www.sitepoint.com/another-20-docs-guides-front-end-developers/?utm_medium=email&utm_campaign=SitePoint+Newsletter++26+February+2015&utm_content=SitePoint+Newsletter++26+February+2015+Version+A+CID_7b1a31cf275aea176b88eaea277eb2ab&utm_so…
This chapter describes in detail the troubleshooting tools that are available in JDK 7. In addition, the chapter lists operating-system-specific tools that may be used in conjunction with these troubleshooting tools. Finally, the chapter explains how…
Launches a Java application. Synopsis java [options] classname [args] java [options] -jar filename [args] javaw [options] classname [args] javaw [options] -jar filename [args] options Command-line options separated by spaces. See Options. classname T…
1.  Introduction At times, it is necessary to use native (non-Java) codes (e.g., C/C++) to overcome the memory management and performance constraints in Java. Java supports native codes via the Java Native Interface (JNI). JNI is difficult, as it inv…
转自:https://www.zybuluo.com/jewes/note/57352 选项的分类 Hotspot JVM提供以下三大类选项: 1. 标准选项:这类选项的功能是很稳定的,在后续版本中也不太会发生变化.运行java或者java -help可以看到所有的标准选项.所有的标准选项都是以-开头,比如-version, -server等. 2. X选项:比如-Xms.这类选项都是以-X开头,可能由于这个原因它们被称为X选项.运行java -X命令可以看到所有的X选项.这类选项的功能还是很稳…
介绍 网络安全已成为大家最关心的问题. 如果你利用服务器存储客户资料, 那你应该考虑使用 SSL 加密客户跟服务器之间的通讯. 随着这几年手机应用迅速崛起. 黑客也开始向手机应用转移, 原因有下列3点: 手机系统各式各样, 缺乏统一的标准. 许多程序员缺乏手机应用开发经验. 更严重的是, 通过手机应用, 黑客可以得到手机用户的隐私数据, 如:日程安排, 联系人信息, 网页浏览历史记录, 个人资料, 社交数据, 短信或者手机用户所在的地理位置. 最为一个网络安全爱好者的我, 最近花了几个月的时间对…
假设Hadoop已经成功安装. 实验环境如下: centos 6.4 hadoop-0.20.2 hbase-0.90.5       用户名root hadoop安装目录:/root/bin/hadoop-0.20.2 hbase计划安装目录:/root/bin/hbase-0.90.5   大致过程为:首先在masternode上安装hbase,配置好后再拷贝至slave机器. (1)下载hbase-0.90.5.tar.gz,解压到/root/bin/hbase-0.90.5 (2)编辑/…
摘要: JDK本身提供了很多方便的JVM性能调优监控工具,除了集成式的VisualVM和jConsole外,还有jps.jstack.jmap.jhat.jstat.hprof等小巧的工具,本博客希望能起抛砖引玉之用,让大家能开始对JVM性能调优的常用工具有所了解. 现实企业级Java开发中,有时候我们会碰到下面这些问题: OutOfMemoryError,内存不足 内存泄露 线程死锁 锁争用(Lock Contention) Java进程消耗CPU过高 ...... 这些问题在日常开发中可能被…
在Android中存在着C和Java两个完全不同的世界,前者直接建立在Linux的基础上,后者直接建立在JVM的基础上.zygote的中文名字为"受精卵",这个名字很好的诠释了zygote进程的作用.作为java世界的孵化者,zygote本身是一个native程序,是由init根据init.rc文件中的配置项创建的. @/system/core/rootdir/init.rc service zygote /system/bin/app_process -Xzygote /system…