Java
Posted on June 12th, 2014
[Reference]
- enum : http://pydoing.blogspot.tw/2010/12/java-enum.html
- enum to int : http://stackoverflow.com/questions/13792110/java-enum-return-int
- List of enum values in java : http://stackoverflow.com/questions/13109497/list-of-enum-values-in-java
new ArrayList(Arrays.asList(MyEnum.values()));
[Java Doc]
- Javadoc interview: http://blog.yam.com/csylvia/article/30584073
[File]
- How to open a txt file : http://stackoverflow.com/questions/3806062/how-to-open-a-txt-file-and-read-numbers-in-java
- Write a binray file : http://stackoverflow.com/questions/6981555/how-to-output-binary-data-to-a-file-in-java
- Append file : http://stackoverflow.com/questions/16927263/appending-byte-to-end-of-a-binary-file
- Read binary file : http://stackoverflow.com/questions/7250229/reading-a-binary-file-into-a-single-byte-array-in-java
- Write text file : http://www.abbeyworkshop.com/howto/java/writeText/
[jar]
- jar version: http://stackoverflow.com/questions/5834794/how-to-check-the-version-of-jar-file
Extrace the jar file by zip or rar, open the MANIFEST.MF
- Remove space : http://www.javaworld.com.tw/jute/post/view?bid=29&id=267298
- trim : http://pydoing.blogspot.tw/2011/01/java-trim.html
- hex bin convert: http://stackoverflow.com/questions/4785654/convert-a-string-of-hex-into-ascii-in-java
- Toint : http://cooking-java.blogspot.tw/2010/03/java-string-to-int.html
[Binary]
- byte array: http://openhome.cc/Gossip/Encoding/String.html
- initialize: http://stackoverflow.com/questions/11208479/how-do-i-initialize-a-byte-array-in-java
- Hex convert : http://stackoverflow.com/questions/4785654/convert-a-string-of-hex-into-ascii-in-java
- unsigned byte : https://sites.google.com/site/gencoreoperative/index/java-development/java-unsigned-bytes
http://www.javamex.com/java_equivalents/unsigned.shtml
[Queue]
- Queue : http://jhengjyun.blogspot.tw/2010/09/java-queue.html
- http://tutorials.jenkov.com/java-collections/queue.html
- Iterator : http://tutorials.jenkov.com/java-collections/queue.html
- Can you access elements in the middle of a queue - Java?: https://answers.yahoo.com/question/index?qid=20120205141233AAYfbW4
- http://stackoverflow.com/questions/18279302/how-do-i-perform-a-java-callback-between-classes
- http://ccckmit.wikidot.com/ja:listener
[byte]
- Reading, Writing, and Creating Files: http://docs.oracle.com/javase/tutorial/essential/io/file.html
- Fix array: http://docstore.mik.ua/orelly/java-ent/jnut/ch02_09.htm
- unsigned byte: http://www.rgagnon.com/javadetails/java-0026.html
- Runnable和Thread的區別 : http://blog.csdn.net/wwww1988600/article/details/7309070
- Simple Pointer Handling: http://web.mit.edu/svn/src/swig-1.3.25/Examples/java/pointer/index.html
[C'tor]
[protected]
[Syntex]