2015年3月6日

摘要: 转自http://www.cnblogs.com/skywang12345/p/io_25.htmlPrintWriter 介绍PrintWriter 是字符类型的打印输出流,它继承于Writer。PrintStream 用于向文本输出流打印对象的格式化表示形式。它实现在PrintStream中的所... 阅读全文
posted @ 2015-03-06 16:45 jasenin 阅读(378) 评论(0) 推荐(0)
 
摘要: public static void main(String[] args) {Map map = new HashMap();map.put("1", "value1");map.put("2", "value2");map.put("3", "value3");//第一种:普遍使用,二次取值Sy... 阅读全文
posted @ 2015-03-06 11:50 jasenin 阅读(153) 评论(0) 推荐(0)