{"id":679,"date":"2019-02-23T17:29:25","date_gmt":"2019-02-23T09:29:25","guid":{"rendered":"http:\/\/www.eait.co\/?p=679"},"modified":"2019-04-05T12:30:43","modified_gmt":"2019-04-05T04:30:43","slug":"%ef%bc%9fjava-%e5%b0%86%e4%b8%a4%e4%b8%aa%e6%96%87%e4%bb%b6%e5%90%88%e5%b9%b6%e4%b8%ba%e4%b8%80%e4%b8%aa%e6%96%87%e4%bb%b6","status":"publish","type":"post","link":"https:\/\/notes.coremix.net\/?p=679","title":{"rendered":"\uff1fjava\u2014\u2014\u5c06\u4e24\u4e2a\u6587\u4ef6\u5408\u5e76\u4e3a\u4e00\u4e2a\u6587\u4ef6"},"content":{"rendered":"<pre>\r\nimport java.io.*;\r\npublic class squencedemo {\r\n\r\n    public static void main(String[] args) {\r\n        \/\/ TODO \u81ea\u52a8\u751f\u6210\u7684\u65b9\u6cd5\u5b58\u6839\r\n        \/\/\u58f0\u660e\u4e24\u4e2a\u6587\u4ef6\u8bfb\u5165\u6d41\r\n        FileInputStream in1 = null, in2 = null;\r\n        \/\/\u58f0\u660e\u4e00\u4e2a\u5e8f\u5217\u6d41\r\n        SequenceInputStream s = null;\r\n        FileOutputStream out = null;\r\n        try {\r\n            \/\/\u6784\u9020\u4e24\u4e2a\u88ab\u8bfb\u5165\u7684\u6587\u4ef6\r\n            File inputFile1 = new File(\"c:\\\\11.txt\");\r\n            File inputFile2 = new File(\"c:\\\\22.txt\");\r\n            \/\/\u6784\u9020\u4e00\u4e2a\u8f93\u51fa\u6587\u4ef6\r\n            File outputFile = new File(\"c:\\\\12.txt\");\r\n\r\n            in1 = new FileInputStream(inputFile1);\r\n            in2 = new FileInputStream(inputFile2);\r\n            \/\/\u5c06\u4e24\u4e2a\u6d41\u5408\u4e3a\u4e00\u4e2a\u8f93\u5165\u6d41\r\n            s = new SequenceInputStream(in1, in2);\r\n            out = new FileOutputStream(outputFile);\r\n\r\n            int c;\r\n            while ((c = s.read()) != -1)\r\n                out.write(c);<span style=\"color: #ff0000;\">\/\/\u4e3a\u4ec0\u4e48\u4e0d\u662f\u91cd\u590d\u5199\u5165\uff1f\uff1f\uff1f<\/span>\r\n            in1.close();\r\n            in2.close();\r\n            s.close();\r\n            out.close();\r\n            System.out.println(\"ok...\");\r\n        } catch (IOException e) {\r\n            e.printStackTrace();\r\n        } finally {\r\n            if (in1 != null)\r\n                try {\r\n                    in1.close();\r\n                } catch (IOException e) {\r\n\r\n                }\r\n            if (in2 != null)\r\n                try {\r\n                    in2.close();\r\n                } catch (IOException e) {\r\n\r\n                }\r\n            if (s != null)\r\n                try {\r\n                    s.close();\r\n                } catch (IOException e) {\r\n                }\r\n            if (out != null)\r\n                try {\r\n                    out.close();\r\n                } catch (IOException e) {\r\n                }\r\n\r\n            }\r\n        }\r\n\r\n\r\n    }<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>import java.io.*; public class squencedemo { public sta [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22,24],"tags":[],"class_list":["post-679","post","type-post","status-publish","format-standard","hentry","category-java","category-base_code"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/posts\/679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=679"}],"version-history":[{"count":1,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/posts\/679\/revisions"}],"predecessor-version":[{"id":680,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=\/wp\/v2\/posts\/679\/revisions\/680"}],"wp:attachment":[{"href":"https:\/\/notes.coremix.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/notes.coremix.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}