java
hjm_1fb1990
https://github.com/hjm1fb
展开
-
用XStream把Map转化成xml的例子
原文:http://deepakmodi2006.blogspot.com/2012/06/conversion-of-map-into-xml-and-vice.html转载 2014-11-15 16:33:54 · 6835 阅读 · 0 评论 -
谷歌地图API
网址:https://code.google.com/apis/console,登录谷歌账号,选择使用旧版页面, 点击API Access。申请一个谷歌Map API key应用于你所有的APP:http://stackoverflow.com/questions/16233442/can-i-have-a-single-google-maps-api-key-for-all-my-a原创 2014-11-15 16:34:57 · 535 阅读 · 0 评论 -
key-value model
http://stackoverflow.com/questions/2973041/a-keyvaluepair-in-java转载 2014-10-14 10:45:57 · 755 阅读 · 0 评论 -
重载Comparator
http://blog.csdn.net/u012319317原创 2014-06-11 22:51:07 · 796 阅读 · 0 评论 -
Android GC 学习笔记
阅读的文章:Android GC 原理探究下面补充一些备注和笔记。算法复制算法 (Copying)图示:标记-压缩算法 (Mark-Compact)英文描述: mark-compact 总结起来就是 标记 —> 压缩有用的对象到一端 —> 回收此端外剩下的空间 图示:可以看出,这两种算法都可以减少内存碎片GC Roots英文官方说明:The root kinds are:原创 2017-07-20 19:31:25 · 330 阅读 · 0 评论 -
java枚举类的定义和取值
二:public enum EnumType {single("单"),multiple("选"),judgment("判断题"),operationWindows("Windows 文件管理"),operationWord("Word 2003 文本加工"),operationWord2010("Word 2010原创 2014-08-20 14:41:54 · 2567 阅读 · 0 评论 -
编码最佳实践(1)--小心"数据溢出"
最近在公司内部做了一些收集和整理的工作,关于trouble shooting和performace tuning 中遇到并解决的典型问题,做了一些内部分享。我整理了一下,准备陆续放上来分享给大家。 这些问题,单个看每个问题都不算复杂或高深,但是都是在实际项目开发中出现并一度造成困扰的,而且带有一定的普适性,具体表现为不知道这些问题的同学很容易在日常开发中中招。因此我们开了一个专题,叫做编转载 2014-07-24 17:02:47 · 585 阅读 · 0 评论 -
Enum获取枚举值的方法
一开始通过百度找 Enum获取枚举值的方法,结果一直没有好的说法。结果自己做个单元测试,两分钟就搞定。╮(╯▽╰)╭比如枚举是Simulation(”模拟“),数据库里存的是Simulation。运行System.out.println(EnumType.Simulation.getDescription());System.out.println(EnumType.Simulat原创 2014-03-14 17:07:04 · 3413 阅读 · 0 评论 -
对象赋值
代码:public void test() throws Exception {Student student1 = new Student(),student2 = new Student(),student3 = new Student();student1.setFk_Group_Id("1");student2.setFk_Group_Id("2");List list原创 2014-04-23 18:11:04 · 568 阅读 · 0 评论 -
用linkedList实现队和宽度优先搜索
linkedList.pop是删除第一个,linkedList.poplinkedList.poplinkedList.pop原创 2014-04-24 15:42:45 · 604 阅读 · 2 评论 -
Java实现多继承效果
在Java中没有public interface BaseInterface {Tools tools = new Tools();class Tools {public Boolean isEmpty(String s) {return (s == null || s.length() == 0);}}原创 2014-07-18 16:29:10 · 656 阅读 · 0 评论 -
java实现
场景描述:客服热线的接线员有sanj原创 2014-06-09 23:24:22 · 459 阅读 · 0 评论 -
usage of volatile modifier
1. Managing Threads and Custom Services2. Java Volatile KeywordWhen is volatile Enough?As I have mentioned earlier, if two threads are both reading and writing to a shared variable, then using the vola转载 2016-02-18 16:21:48 · 506 阅读 · 0 评论