随笔分类 -  JAVA

java中的可释放资源定义,类似c#中的using
摘要:public static class FileDuplicator implements AutoCloseable { Scanner in = null; PrintWriter out = null; public FileDuplicator(String sourceFile, String destFile)... 阅读全文

posted @ 2018-02-08 11:51 空明流光 阅读(407) 评论(0) 推荐(0) 编辑

java 实现自定义事件
摘要:import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; import java.... 阅读全文

posted @ 2018-02-05 17:42 空明流光 阅读(425) 评论(0) 推荐(0) 编辑

java 中异常处理示例并捕获完整异常内容
摘要:public class Test { public static void main(String[] args) { try { int a = 1; int b = 0; int c = a/b; } catch(java.lang... 阅读全文

posted @ 2018-01-25 14:43 空明流光 阅读(289) 评论(0) 推荐(0) 编辑

java post json sample
摘要:import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; public class Test { public static void main(String[] args) { try { URL url = new URL("ht... 阅读全文

posted @ 2018-01-19 16:15 空明流光 阅读(174) 评论(0) 推荐(0) 编辑

导航