摘要: package intensiveexercise; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java. 阅读全文
posted @ 2017-01-17 10:06 mabelfdm 阅读(203) 评论(0) 推荐(0) 编辑
摘要: package util.filereader; import java.io.File; import java.io.IOException; public class PrintDirectory { public static void main(String[] args) { File 阅读全文
posted @ 2016-12-01 11:30 mabelfdm 阅读(226) 评论(0) 推荐(0) 编辑
摘要: package filereader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import jav 阅读全文
posted @ 2016-12-01 10:22 mabelfdm 阅读(136) 评论(0) 推荐(0) 编辑
摘要: package com20161125; public class SqlElementsWrapper { /* * oriOutput: {a.*}, {b.*}, a.runId * alias: a, b * table: TableA, TabelB */ String oriOutput 阅读全文
posted @ 2016-11-28 15:32 mabelfdm 阅读(110) 评论(0) 推荐(0) 编辑
摘要: package com20161125; public class SqlElementsWrapper { /* * oriOutput: {a.*}, {b.*}, a.runId * alias: a, b * table: TableA, TabelB */ String oriOutput 阅读全文
posted @ 2016-11-28 13:52 mabelfdm 阅读(400) 评论(0) 推荐(0) 编辑
摘要: import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; public class SqlStringParseDemo { publicstaticvoid main(String[] args) { S 阅读全文
posted @ 2016-11-14 16:04 mabelfdm 阅读(255) 评论(0) 推荐(0) 编辑
摘要: ListDemo(通过List接口的实现类ArrayList实现需求) 元素个数不确定 要求获得元素的实际个数 按照存储顺序获取并打印元素信息 package com1018; import java.util.ArrayList; import java.util.Iterator; import 阅读全文
posted @ 2016-10-18 13:34 mabelfdm 阅读(302) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class CharCount { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print(" 阅读全文
posted @ 2016-10-13 15:28 mabelfdm 阅读(134) 评论(0) 推荐(0) 编辑
摘要: package practice2; import java.util.Scanner; public class StringBufferDemo { public static void main(String[] args) { Scanner input = new Scanner(Syst 阅读全文
posted @ 2016-10-11 15:17 mabelfdm 阅读(637) 评论(0) 推荐(0) 编辑
摘要: package practice2; import java.util.Scanner; public class ExceptionDemo2 { public static void main(String[] args) { try { className(); } catch (Except 阅读全文
posted @ 2016-10-10 15:16 mabelfdm 阅读(140) 评论(0) 推荐(0) 编辑