본문 바로가기

IT/클래스

URL 클래스

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import java.net.*;
import java.io.*;
 
public class URLEx {
    public static void main(String[] args) throws MalformedURLException, IOException {
        
        URL url = new URL("http""java.sun.com"8800"index.jsp?name=syh1011#content");
        String protocol = url.getProtocol();
        String host = url.getHost();
        int port = url.getPort();
        int defaultPort = url.getDefaultPort();
        
        String path = url.getPath();
        String query = url.getQuery();
        String ref = url.getRef();
        String _url = url.toExternalForm();
        String mixUrl = null;
        if (port == -1
        {
            mixUrl = protocol + "//" + host + path + "?" + query + "#" + ref;
        }
        else
        {
            mixUrl = protocol + "//" + host + ":" + port + path + "?" + query + "#" + ref;
        }
        
        if(port == -1) port = url.getDefaultPort();
        
        System.out.printf("프로토콜 : %s \n", protocol);
        System.out.printf("호스트 : %s \n", host);
        System.out.printf("포트 : %d \n",  port);
        System.out.printf("패스 : %s \n",  path);
        System.out.printf("쿼리 : %s \n",  query);
        System.out.printf("ref : %s \n",  ref);
        System.out.printf("mixURL : %s \n",  mixUrl);
        System.out.printf("defaultPort : %s \n",  defaultPort);
        System.out.printf("URL : %s \n",  _url);
        
        url = new URL("http://java.sun.com");
        InputStream input = url.openStream();
        int readByte;
        System.out.println("=== 문서의 내용 ===");
        while ( ( (readByte = input.read() ) != -1) ) 
        {
            System.out.print( (char) readByte );
        }
        input.close();
    }
}
 
cs


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
프로토콜 : http 
호스트 : java.sun.com 
포트 : 8800 
패스 : index.jsp 
쿼리 : name=syh1011 
ref : content 
mixURL : http//java.sun.com:8800index.jsp?name=syh1011#content 
defaultPort : 80 
URL : http://java.sun.com:8800index.jsp?name=syh1011#content 
=== 문서의 내용 ===
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type="text/javascript">
   var _U = "undefined";
   var g_HttpRelativeWebRoot = "/ocom/";
   var SSContributor = false;
   var SSForceContributor = false;
   var SSHideContributorUI = false;
   var ssUrlPrefix = "/technetwork/";
   var ssUrlType = "2";
   
   var g_navNode_Path = new Array();
       g_navNode_Path[0= 'otnen';
       g_navNode_Path[1= 'otnen_java';
   var g_ssSourceNodeId = "otnen_java";
   var g_ssSourceSiteId = "otnen";
</script>
 
 
  <script id="ssInfo" type="text/xml" warning="DO NOT MODIFY!">
  <ssinfo >
    <fragmentinstance  id="fragment1" fragmentid="ocom-header-hp" library="server:OCOM-HEADER-HP">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment2" fragmentid="ocom-footer-hp" library="server:OCOM-FOOTER-HP">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment3" fragmentid="universal-metatag" library="server:UNIVERSAL-FRAGMENTS">
    </fragmentinstance>
    <fragmentinstance  id="fragment6" fragmentid="ocombr-header-hp" library="server:OCOMBR-HEADER-HP">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment7" fragmentid="ocombr-footer-hp" library="server:OCOMBR-FOOTER-HP">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment13" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment14" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment15" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment16" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment17" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment18" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment19" fragmentid="universal-search-fragment" library="server:UNIVERSAL-SEARCH-FRAGMET-LIB">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment20" fragmentid="ExternalNavigationHorizontal" library="server:EXTERNALNAVHORIZONTALLIB">
    </fragmentinstance>
    <fragmentinstance  id="fragment21" fragmentid="ExternalBreadCrumb" library="server:EXTERNAL_BREADCRUMB">
    </fragmentinstance>
    <fragmentinstance  id="fragment22" fragmentid="Universal_Localization_Fragment" library="server:UNIVERSAL_LOCALIZATION_FRAG">
    </fragmentinstance>
    <fragmentinstance  id="fragment23" fragmentid="universal-webcache-integration" library="server:UNIVERSAL-WEBCACHE-INTEGRATION">
      
    </fragmentinstance>
    <fragmentinstance  id="fragment24" fragmentid="sitecatalyst-otn-standard" library="server:SITECATALYST-OTN-STANDARD">
      
    </fragmentinstance>
      <fragmentinstance  id="fragment25" fragmentid="mosaic-header-content" library="server:MOSAIC-HEADER-CONTENT">
        
      </fragmentinstance>
      <fragmentinstance  id="fragment26" fragmentid="ocomheader" library="server:OCOMHEADER">
        
      </fragmentinstance>
      <fragmentinstance  id="fragment27" fragmentid="ocomfooter" library="server:OCOMFOOTER">
        
      </fragmentinstance>
      <fragmentinstance  id="fragment28" fragmentid="ocom-commonassets" library="server:OCOM-FRAGMENT-LIBRARAY">
        
      </fragmentinstance>
  </ssinfo>
  </script>
<link href="/us/assets/hp-styles.css" type="text/css" rel="stylesheet" />
  <link href="/us/assets/otn-hp-otn-hp-css.css" type="text/css" rel="stylesheet" />
<!-- SS_BEGIN_SNIPPET(fragment28,ocom-commonassets-droppoint)-->
                
                
            <!-- SS_END_SNIPPET(fragment28,ocom-commonassets-droppoint)-->
    <script language="JavaScript" type="text/javascript" src="/us/assets/prototype-1.7.2.0.js">
  </script>
 
    <!--SS_BEGIN_SNIPPET(fragment3,head_tags)-->
 
 
                                                     
         
 
 
 
 
    
<title>Oracle Technology Network for Java Developers | Oracle Technology Network | Oracle </title>
<meta name="Title" content="Oracle Technology Network for Java Developers | Oracle Technology Network | Oracle ">
<meta name="Description" content="Oracle Technology Network is the ultimate, complete, and authoritative source of technical information and learning about Java.">
<meta name="Keywords" content="java, javafx">
<meta name="robots" content="INDEX, FOLLOW">
<meta name="country" content="">
<meta name="Language" content="en">
<meta name="Updated Date" content="4/16/18 5:48 PM">
 
            <!--SS_END_SNIPPET(fragment3,head_tags)-->
<!--<link media="screen" href="/ocom/fragments/externalnavhorizontal/horiz-nav.css" type="text/css" rel="stylesheet" />-->
<!--SS_BEGIN_SNIPPET(fragment3,code)-->            <!--SS_END_SNIPPET(fragment3,code)-->
<!--[if IE]>
  <STYLE>
    .logo_align{margin-bottom: 4px; margin-left:0px;}
    .search_position{margin:7px 3px 14px 16px;}
    #panelDiv_search .contentBg{padding:15px 5px 5px 5px; } 
    ul#navigation div.submenu {border-bottom:1px solid #b7b7b7;}
    ul#navigation div.submenu .bottomleft{background:none; width:15px; height:30px; float:left;  margin-left:-16px; margin-bottom:-42px; }
    ul#navigation div.submenu .bottomcenter{background:none; height:30px;  margin-left:15px; margin-right:15px; float:left; width:360px;} 
    ul#navigation div.submenu .bottomright{background:none; width:15px; height:30px; float:left; margin-left:360px; }
    ul#navigation div.submenu .partner_bottomleft{ background:none; width:15px; height:30px;  float:left; margin-left:-16px; margin-bottom:-42px; clear:left; margin-top:15px;}
    ul#navigation div.submenu .partner_bottomcenter{  background:none; width:362px; height:30px; margin-left:15px;  float:center;}
    ul#navigation div.submenu .partner_bottomright{  background:none; width:15px; height:30px; float:right; margin-right:-15px;}
  </STYLE>
  <![endif]--><!--[if IE 6]>
  <style>
  .highlight_tab{background: none;filter:progid:DXimageTransform.Microsoft.alphaimageloader(src='http://www.oracleimg.com/us/assets/subfeature-tab.png', sizingMethod='fixed');}
  .highlight_tabdivider{background: none;filter:progid:DXimageTransform.Microsoft.alphaimageloader(src='http://www.oracleimg.com/us/assets/subfeature-divider.png', sizingMethod='fixed');}
  .lightbox_overlay {display: none;position: absolute;background-color: black;z-index:1001;-moz-opacity: 0.6;opacity:.60;filter: alpha(opacity=60);overflow:auto;top: 0px;left: 0px;
    height:expression((document.documentElement.clientHeight < document.documentElement.scrollHeight) ? document.documentElement.scrollHeight : document.documentElement.clientHeight);
    width:expression(document.documentElement.clientWidth);}
  .subfeature_more {position:relative;}
  .subfeature_text {position:relative;}
  .newsroom_rotator{margin-left:0px;}
  </style>
  <![endif]-->
 
  <style type="text/css">
    .sunquicklinks_wrapper{DISPLAY: block; FLOAT: right; WIDTH: 200px; TEXT-ALIGN: right;}
    .welcomesignin_wrapper{FLOAT: left; WIDTH: 634px; TEXT-ALIGN: right;VERTICAL-ALIGN: bottom; PADDING-TOP: 12px}
    .logo_wrapper{DISPLAY: block; MARGIN-BOTTOM: 6px; float:left; WIDTH: 974px; HEIGHT: 40px;}
      .legalese {font-size:10px;font-family:arial,helvetica,sans-serif;}
        a.legalese:link {color:#000;text-decoration:none;}
        a.legalese:visited {color:#000;text-decoration:none;}
        a.legalese:hover {color:#FF0000;text-decoration:underline;}
  .profile{font-family:arial,elvetica,sans-serif;font-size:10px;color:#000;text-decoration:none;}
  .profile a:link{font-family:arial,helvetica,sans-serif;font-size:10px;color:#000;text-decoration:none;}
  .profile a:visited{font-family:arial,helvetica,sans-serif;font-size:10px;color:#000;text-decoration:none;}
  .profile a:hover{font-family:arial,helvetica,sans-serif;font-size:10px;color:#ff0000;text-decoration:underline;}
    OL,DL {margin-bottom:1px;}
    OL,DL,DT,DD {line-height:14px;}
    DD {margin-bottom:.5em;}
    #navigation{width:971px;}
    .sngPst DIV B {color:#ff0000;}
      .header{height:116px;}
        #breadCrumb .breadCrumb_Center .breadCrumb_Content .active{ font-weight:bold; color:#666666; font-size:13px;}
        .menu-ocom {display:none;}
  </style>
  
<!--SS_BEGIN_SNIPPET(fragment23,code)-->
            <!--SS_END_SNIPPET(fragment23,code)-->
 
<!-- SS_BEGIN_SNIPPET(fragment28,ocom-commonassets)--><link rel="stylesheet" type="text/css" href="https://www.oracle.com/asset/web/css/ocom-mosaic.css" />
<link rel="stylesheet" type="text/css" href="https://www.oracle.com/asset/web/css/master-mosaic.css" />
<script language="JavaScript" type="text/javascript" src="https://www.oracle.com/asset/web/js/jquery.js"></script>
<script language="JavaScript" type="text/javascript" src="https://www.oracle.com/asset/web/js/oraclelib-mosaic.js"></script>
 
    <script async="async" type="text/javascript" src='//consent.truste.com/notice?domain=oracle.com&c=teconsent&js=bb&noticeType=bb&text=true' crossorigin></script>
<!--[if IE]>
  <STYLE>
    .logo_align{margin-bottom: 4px; margin-left:0px;}
    .search_position{margin:7px 3px 14px 16px;}
    #panelDiv_search .contentBg{padding:30px 5px 5px 5px; } 
    ul#navigation div.submenu {border-bottom:1px solid #b7b7b7;}
    ul#navigation div.submenu .bottomleft{background:none; width:15px; height:30px; float:left;  margin-left:-16px; margin-bottom:-42px; }
    ul#navigation div.submenu .bottomcenter{background:none; height:30px;  margin-left:15px; margin-right:15px; float:left; width:380px;} 
    ul#navigation div.submenu .bottomright{background:none; width:15px; height:30px; float:left; }
    ul#navigation div.submenu .partner_bottomleft{ background:none; width:15px; height:30px;  float:left; margin-left:-16px; margin-bottom:-42px; clear:left; margin-top:15px;}
    ul#navigation div.submenu .partner_bottomcenter{  background:none; width:382px; height:30px; margin-left:15px;  float:center;}
    ul#navigation div.submenu .partner_bottomright{  background:none; width:15px; height:30px; float:right; margin-right:-15px;}
  </STYLE>
<![endif]-->
<!--[if IE 6]>
  <style>
  #panelDiv_search .BottomleftCurv{background:none; width:15px; height:30px; float:left;}
  #panelDiv_search .centerBottom{background:none;width:153px;height:30px;float:left;}
  #panelDiv_search .BottomrightCurv{background:none;width:15px;height:30px;float:right;}
  #panelDiv_search .contentBg{border-bottom:1px solid #ababab;}
  #navigation{width:971px;}
  </style>
<![endif]-->
 <!--Brightcove script line and lightbox code--> 
<div id="bcVideoPlayer" style="display: none;">&nbsp;</div>
<div class="lightbox_overlay" id="lightbox_brightcove" onClick="showclose();" style="display: none; z-index: 30000;"><!--spacer-->&nbsp;</div>
            <!-- SS_END_SNIPPET(fragment28,ocom-commonassets)-->
    <script language="JavaScript" src="/us/assets/otn-hp-otn-hp-js.js" type="text/javascript"> </script>
   <!--DTM embed code - Header -->
<script src="//assets.adobedtm.com/6f37a0dc9cdbe818dc4979828b58b88e3f060ea4/satelliteLib-e598c5b61e39a10b402e048e87dd27b0f1cd2d4c.js"></script>
<!--End-->
    </head>
<body class="f01 f01v0 f01bg">
<a name="top"></a>
    <div class="f01bg"></div>
    <div class="f01v0w1">
 
    
<!-- SS_BEGIN_SNIPPET(fragment26,ocomheader)-->                
        <!-- U02v0 -->  <nav class="u02nav">
<div id="u02" class="u02">
<div data-skiptxtappend="" data-skiptxtprepend="Skip" tabindex="-1" id="u02skip2content">
<ul>
    <li><a href="/">Home</a></li>
    <li><a id="u02skip2c" href="#maincontent">Skip to Content</a></li>
    <li><a id="u02skip2s" href="#skip_to_search_form">Skip to Search</a></li>
</ul>
</div>
<div class="u02w1"><!-- logo -->
<div data-trackas="header" class="u02logo">
<div class="u02logow1"><a class="o_icon" data-lbl="logo" data-trackas="header" href="https://www.oracle.com/index.html"><span>Oracle</span></a></div>
</div>
<!-- menu -->
<div data-trackas="menu" class="u02menu">
<div class="u02mlink" id="u02main">
<div class="u02mlinkw1"><a data-lbl="menu" id="u02menulink" href="/us/assets/MENUCONTENT-EN">
<div class="u02mlinkw2">Menu</div>
</a></div>
</div>
</div>
<!-- search -->  
<div data-trackas="header" class="u02search" id="u02search">
<form class="u02searchform" name="searchForm" method="get" action="https://www.oracle.com/search/results?cat=otn">
    <input value="otn" name="cat" type="hidden" />     <input value="S3" name="Ntk" type="hidden" />     <input id="txtSearch" class="textcnt autoclear" name="Ntt" value="" />     <input class="u02searchbttn" value="Submit Search" type="submit" />
</form>
</div>
<div data-trackas="header" class="u02tools">
<ul>           <!-- user tools -->
    <li class="u02mtool u02toolsloggedout"><a data-lbl="profile:sign-in-account" class="u02ticon u02user" href="#usermenu"> <span class="u02signin">Sign In</span> <span class="u02signout">Account</span> </a>
    <div data-lbl="profile" class="u02user u02toolpop">
    <div class="u02userin">
    <div data-lbl="oracle-account" class="u02userinw1 u02userloggedin">
    <h5>Oracle Account</h5>
    <p id="u02userinfo">&nbsp;</p>
    <a class="u02bttn" id="u02pfile-sout" data-lbl="sign-out" href="javascript:sso_sign_out();">Sign Out</a>
    <ul id="u02usertools">
        <li><a id="u02pfile-acct" data-lbl="account" href="https://profile.oracle.com/myprofile/account/secure/update-account.jspx?nexturl=">Account</a></li>
        <li><a data-lbl="help" href="https://www.oracle.com/corporate/contact/help.html">Help</a></li>
    </ul>
    </div>
    <div data-lbl="oracle-account" class="u02userinw1 u02userloggedout">
    <h5>Oracle Account</h5>
    <p>Manage your account and access personalized content.</p>
    <a class="u02bttn" data-lbl="signin" id="u02pfile-regs" href="http://www.oracle.com/webapps/redirect/signon?nexturl=">Sign in</a>
    <ul id="u02usertools">
        <li><a data-lbl="createaccount" href="https://profile.oracle.com/myprofile/account/create-account.jspx">Create an account</a></li>
        <li><a data-lbl="help" href="https://www.oracle.com/corporate/contact/help.html">Help</a></li>
    </ul>
    </div>
    <div data-lbl="cloud-account" class="u02userinw2">
    <h5>Cloud Account</h5>
    <p>Access your cloud dashboard, manage orders, and more.</p>
    <a class="u02bttn" data-lbl="signin" href="https://cloud.oracle.com/sign-in">Sign In</a>
    <ul class="u02usertools">
        <li><a data-lbl="cta-050118-account-header-cloud-trial" href="https://cloud.oracle.com/en_US/tryit?intcmp=ocom-header">Sign Up&mdash;Free Trial</a></li>
    </ul>
    </div>
    </div>
    </div>
    </li>
    <!-- country select -->
    <li id="u02cmenu" class="u02mtool"><a class="u02ticon u02regn" href="/us/mosaicmenu/index.html#u02countrymenu"><span>Country/Region</span></a></li>
    <!-- call -->
    <li id="u02call" class="u02mbttn"><a data-lbl="call" class="u02ticon u02call o-call" href="#callOracle"><span>Call</span></a></li>
    <!-- chat --> <!--<li class="u02mbttn" id="u02chat">
                    <a data-lbl="chat" href="#chat" class="u02ticon u02chat"><span>Chat</span></a>
                </li>-->         </ul>
    </div>
    </div>
    <a id="maincontent">&nbsp;</a></div>
    </nav<!-- /U02v0 -->
 
            <!-- SS_END_SNIPPET(fragment26,ocomheader)-->
 
<!--SS_BEGIN_SNIPPET(fragment21,2)-->
    
    <!--**override root for testing purposes:**-->
    <!--** Header Logo ** -->
    <!--** Header Search ** -->
    <!--** Welcome SignIn ** -->
     
    
    <!--** Footer ** -->
    
   
    
<!--** Header Logo ** -->
             
    
 
  <!-- MOSAIC -->
<!-- Communities-->
 
<!-- User Category -->
 
<!-- User Intrest -->
<!-- Navigation starts here -->
     
          
                    
        
        
          
 
        
      
      
     
    
     
        
            
            
       
        
      
     
     
        
<!-- User Community SC code -->
 
<!-- User Category SC code -->
 
 
<!-- User Interest SC code -->
 
 
    
        <div id="breadCrumb">
        <div class="breadCrumb_Left"></div>
        <div class="breadCrumb_Center">
        <div style="position:relative;">
        <span class="breadCrumb_Content">
                <a href="/technetwork/index.html" onclick="navTrack('otn','en','breadcrumb','otnen');"><span class=red>Oracle</span> Technology Network</a>
                <span class="rightarrow">></span>
                <span class="active">Java</span>
        </span>
        </div>
        </div>
        <div class="breadCrumb_Right"></div>
        </div>
 
            <!--SS_END_SNIPPET(fragment21,2)-->
        <!-- F02v0 -->
      <div class="f02 f02v0">
      <div class="f02w1">
    <div class="f02 f02v0">
<div class="f02w1">
<div class="pg0 pg0v1" id="pg0"><!-- hm1 -->
<div id="hm1v0">
<div id="hm1w1"><!--- BEGIN homepage feature 2 -->
<div class="hm1w2 first"><a href="https://shop.oracle.com/apex/f?p=CLOUD:FREE&amp;intcmp=java-hp-otn"><img style="left: 0px; width: 575px; top: -4px; height: 308px;" alt="devs" src="/technetwork/java/cloud-trial-resize-3752359.png" /></a<!-- <h3>JavaOne</h3> --> <!--div class="hm1w3" style="top: 231px; left: 10px; width: 400px; height: 57px;">
<h2><a onClick="navTrack('otn','en','jdf1','JavaOne');" href="https://shop.oracle.com/apex/f?p=CLOUD:FREE&intcmp=java-hp-otn"> Get building today </a>&nbsp;</h2>
<p class="metainfo"><a onClick="navTrack('otn','en','jdf1','j1session','cloud');" june="" sao="" brazil="" a="" href="https://shop.oracle.com/apex/f?p=CLOUD:FREE&intcmp=java-hp-otn">Posted 06/01/17 &nbsp;//&nbsp; Tags: </a><a target="_blank" href="https://community.oracle.com/community/java">java, javaee, javase, IoT</a> <a target="_blank" href="https://community.oracle.com/community/java/javaone">JavaOne</a> &nbsp;//&nbsp; <a target="" href="/technetwork/indexes/index-085150.html"><strong>Headlines Archive</strong></a></p>
</div--></div>
<!--- END homepage feature 2 --> <!--- BEGIN homepage feature 1 -->
<div class="hm1w2"><img alt="" src="/technetwork/java/javamagazinejan2018-4367173.png" width="573" height="307" /><!--- <h3>Java Magazine</h3> -->
<div style="top: 241px; left: 57px; width: 372px; height: 30px;" class="hm1w3">
<h2><a onClick="navTrack('otn','en','jdf3','javamag');" href=" http://ora.cl/Ns26t"><i>Java Magazine January/February Issue</i></a></h2>
<!-- <p><a href="http://ora.cl/YT6t" onClick="navTrack('otn','en','jdf3','javase','javase8''javase7','javaembedded');"> Check out the special issue on Reactive Programming</a></p> --><span style="font-size: smaller;">Posted 1/30/18&nbsp; //&nbsp; Tags: </span><a target="_blank" href="https://community.oracle.com/community/java"><span style="font-size: smaller;">java</span></a><span style="font-size: smaller;">, </span><a target="_blank" href="https://community.oracle.com/community/enterprise_manager"><span style="font-size: smaller;">enterprise</span></a><span style="font-size: smaller;">, </span><a target="_blank" href="https://community.oracle.com/community/java/java-ee-java-enterprise-edition"><span style="font-size: smaller;">Java EE</span></a><span style="font-size: smaller;">&nbsp; //&nbsp; </span><a target="" href="/technetwork/indexes/index-085150.html"><span style="font-size: smaller;"><strong>Headlines Archive</strong></span></a></div>
</div>
<!--- END homepage feature 1 -->  <!--- BEGIN homepage feature 3 -->
<div class="hm1w2"><img src="
/technetwork/java/oraclecode2017-3753537.png" alt="developer" width="573" height="307" /> &lt; <!-- <h3>OTN Summit Replay</h3> -->
<div style="left: 5px; width: 544px; top: 224px; height: 56px;" class="hm1w3">
<h2><a href="https://go.oracle.com/oraclecode"> Oracle Code&nbsp;</a></h2>
<a onClick="navTrack('otn','en','jdk','Code');" href="https://go.oracle.com/oraclecode"> Join us at Oracle Code conferences, a series of one-day developer conference being held worldwide. </a>
<p class="metainfo">Posted 2/06/18&nbsp; //&nbsp; Tags: <a target="_blank" href="https://community.oracle.com/community/java">Java</a>, <a target="_blank" href="https://community.oracle.com/community/development_tools">Development Tools</a>, <a target="_blank" href="https://community.oracle.com/community/java/java-ee-java-enterprise-edition">DevOps</a> &nbsp;//&nbsp; <a target="" href="/technetwork/indexes/index-085150.html"><strong>Headlines Archive</strong></a></p>
</div>
</div>
<!--- END homepage feature 3 -->
<div class="hm1w4">
<h3>Software Downloads</h3>
<a target="" class="viewall" onClick="navTrack('otn','en','jddl','alldownloads');" href="/technetwork/indexes/downloads/index.html">View All Downloads</a></div>
<div style="top: 42px; height: 240px;" class="hm1w5">
<h3>Top Downloads</h3>
<ul>
    <li><a onClick="navTrack('otn','en','jddl','javase');" href="/technetwork/java/javase/downloads/index.html">Java SE</a></li>
    <li><a onClick="navTrack('otn','en','jddl','javaee');" href="/technetwork/java/javaee/downloads/index.html">Java EE and GlassFish</a></li>
    <li><a onClick="navTrack('otn','en','jddl','javafx');" href="/technetwork/java/javase/downloads/index.html">JavaFX</a></li>
    <li><a onClick="navTrack('otn','en','jddl','javame');" target="" href="/technetwork/java/embedded/javame/embed-me/downloads/java-embedded-java-me-download-2162242.html">Java ME</a></li>
    <li><a onClick="navTrack('otn','en','jddl','jdeveloper');" href="/technetwork/developer-tools/jdev/downloads/index.html">JDeveloper&nbsp;and ADF</a></li>
    <li><a onClick="navTrack('otn','en','jddl','oepe');" href="/technetwork/developer-tools/eclipse/downloads/index.html">Enterprise Pack for Eclipse</a><a onClick="navTrack('otn','en','jddl','wls');" href="/technology/software/products/middleware/index.html"><br />
    </a></li>
    <li><a target="" href="http://netbeans.org/downloads/">NetBeans IDE</a><a target="" href="http://netbeans.org/downloads/"><br />
    </a></li>
    <li><a target="" href="/technetwork/community/developer-vm/index.html">Pre-Built VM for Java Devs</a></li>
</ul>
<a class="getbttn" onClick="navTrack('otn','en','jddl','getjavanew');" href="/technetwork/java/javase/downloads/index.html"><img alt="Get Java" src="/ocom/groups/public/@otn/documents/digitalasset/1906207.gif" /></a></div>
<div style="top: 40px; height: 269px;" class="hm1w6">
<h3>New Downloads</h3>
<ul>
    <li><a href="/technetwork/java/javase/downloads/index.html">Java SE 10.0.1</a>
    <p>Released 2018/04/17</p>
    </li>
 
    <li><a href="/technetwork/java/javase/downloads/index.html">Java SE 8 Update 171/ 172</a>
    <p>Released 2018/04/17</p>
    </li>
    
    <li><a href="/technetwork/java/embedded/embedded-se/downloads/index.html">Java SE Embedded 8 Update 171</a>
    <p>Released 2018/04/17</p>
    </li>
    <li><a href="/technetwork/java/javase/cpu-psu-explained-2331472.html">*Java CPU and PSU <br />
    &nbsp;Releases Explained</a></li>
    <li><a href="http://www.oracle.com/technetwork/java/embedded/javacard/overview/index.html" target=""> Java Card 3.0.5u2</a></li>
</ul>
<!-- <a target="" href="https://cloud.oracle.com/java?intcmp=CLD-javacloudservicebutton-sm" class="getbttn" onClick="navTrack('otn','en','button','javacloudservicebutton-sm');"><img src="/ocom/groups/public/@otn/documents/digitalasset/1932159.gif" align="bottom" alt="Get Java Cloud" /></a>  --></div>
</div>
</div>
<!-- /hm1 -->   <!-- HP05v0 -->
<div class="hp05 hp05v0 hp05offhp">
<h3>What's New</h3>
<div class="hp05w1">
<div class="hp05w2"><img alt="" src="/ocom/groups/public/@otn/documents/digitalasset/1917282.jpg" width="41" height="32" /></div>
<div class="hp05w3"><a href="https://cloud.oracle.com/tryit?intcmp=ocom-otn">Java in the Cloud: Rapidly develop and deploy Java business applications in the cloud. <span class="hp05cta">Start for free.</span></a></div>
</div>
</div>
<!-- /HP05v0 -->  <!-- hm2v0 -->
<div class="hm2v0"><!-- hm2v1 -->
<div class="hm2 hm2v1">
<h3>Essential Links</h3>
<ul>
    <li><a onClick="navTrack('otn','en','jdelinks','about us')" href="/technetwork/community/join/overview/index.html">About Us/Become a Member</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','javaapis')" href="/technetwork/java/api-141528.html">Java APIs</a></li>
    <li><a target="" onClick="navTrack('otn','en','jdelinks','articles')" href="https://community.oracle.com/community/java/java_desktop">Technical Articles</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','new2java')" href="/technetwork/topics/newtojava/overview/index.html">New to Java</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','Java Certification and Training')" href="http://education.oracle.com/pls/web_prod-plq-dad/ou_product_category.getFamilyPage?p_family_id=48&amp;intcmp=WWOU11042424MPP055">Java Certification &amp; Training</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','Java Bug Database')" href="http://bugs.sun.com/bugdatabase/">Java Bug Database</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','javablog')" target="" href="http://blogs.oracle.com/java">&quot;The Java Source&quot; Blog<br />
    </a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','Twitter')" target="" href="http://twitter.com/java">@Java<br />
    </a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','developernewsletters')" href="/subscribe/index.html#tech">Java Developer Newsletter</a></li>
    <li><a target="" onClick="navTrack('otn','en','jdelinks','javadevmagazine')" href="http://www.oracle.com/technetwork/java/javamagazine"><i>Java Magazine</i></a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','youtubejava')" href="http://www.youtube.com/java">Demos and Videos<br />
    </a></li>
    <li><a href="https://community.oracle.com/community/java">Community Platform</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','JavaUserGroups')" target="" href="https://community.oracle.com/community/java/jug">Java User Groups</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','JavaChamps')" target="" href="https://community.oracle.com/community/java/java-champions">Java Champions</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','JavaCommunityProcess')" href="http://jcp.org/en/home/index">Java Community Process</a></li>
    <li><a target="" onClick="navTrack('otn','en','jdelinks','Adopt A JSR')" href="https://community.oracle.com/community/java/jcp/adopt-a-jsr">Adopt A JSR</a></li>
    <li><a onClick="navTrack('otn','en','jdelinks','facebook')" href="http://www.facebook.com/ilovejava">Facebook</a> | <a onClick="navTrack('otn','en','jdelinks','forums')" target="" href="http://community.oracle.com/community/java">Forums</a><a onClick="navTrack('otn','en','jdelinks','joinotn')" href="/technetwork/community/join/index.html"><br />
    </a></li>
    <li><a href="http://events.oracle.com/search/search?group=Events&amp;keyword=java">Events </a>| <a target="" href="https://community.oracle.com/groups/otn-vts-java-replay-library">Virtual Technology Summit <br />
    </a></li>
    <br />
    <br />
    <a onClick="navTrack('otn','en','button','javacloudservicebutton-lg')" target="" href="https://cloud.oracle.com/tryit?intcmp=ocom-otn"><img alt="Oracle Cloud" src="/ocom/groups/public/@otn/documents/digitalasset/1939460.jpg" align="middle" /></a> </ul>
    </div>
    <!-- /hm2v1 -->     <!-- hm2v2 -->
    <div class="hm2 hm2v2">
    <h3>Developer Spotlight</h3>
    <a target="" href="https://community.oracle.com/docs/DOC-1008823">     <br />
    Java EE&mdash;the Most Lightweight Enterprise Framework?</a> <br />
    <a target="" href="https://community.oracle.com/docs/DOC-1008824">     <br />
    Modular and Reusable Java EE Architecture with Docker</a> <br />
    <br />
    <a target="_blank" href="https://go.oracle.com/javacloud">     Special Offer: Oracle Cloud for Java</a> <br />
    <a target="" href="https://community.oracle.com/docs/DOC-1007145">     <br />
    The Java Trove: Part II</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1006954">     <br />
    Lambda Usage with Collections and Method References</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1004888">     <br />
    Shareloc: Share Your Location with Friends Using the Cloud</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1005785">     <br />
    The Java Trove: Part I</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1003597">     <br />
    Getting Started with Lambda Expressions</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1003506">     <br />
    Filters in RESTful Java</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1002108">     <br />
    Getting Onboard Oracle Java Cloud Service&nbsp;</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-1001176">     <br />
    Migrating from Desktop to Cloud-Native Web Applications </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-917746"><br />
    Converting an Existing OpenJFX Application to a Mobile Application Using Gluon</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-998953"><br />
    Putting Hypermedia Back in REST with JAX-RS </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-998210"><br />
    Step-by-Step High Availability with Docker and Java EE <br />
    </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-995861">Dependency Management with Maven</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-995305"><br />
    CompletableFuture in Java 8 </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-994258"><br />
    Java User Groups around the World</a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-992746"><br />
    Medusa: Gauges for JavaFX </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-991686"><br />
    Optionals: Patterns and Good Practices </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-982272"><br />
    Java ME + Raspberry Pi + Sensors = IoT World Part 4<br />
    </a><a target="" href="https://community.oracle.com/docs/DOC-920950"><br />
    Java SE 8 in Practice </a><br />
    <a target="" href="https://www.youtube.com/user/java"><br />
    &nbsp;     </a><br />
    <a target="" href="https://community.oracle.com/docs/DOC-910779"><br />
    &nbsp;     </a></div>
    <!-- /hm2v2 -->     <!-- hm2v3 -->
    <div class="hm2 hm2v3">
    <h3>Blogs</h3>
    <ul>      <script>
  function resizeIframe(obj) {
    obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
  }
</script> <iframe src="/technetwork/rssmanager/javahpbloggers-3096262.html" scrolling="no" onload="resizeIframe(this)" width="100%" frameborder="0"></iframe> </ul>
        <ul>       <iframe src="/technetwork/rssmanager/rss-1525689.html" scrolling="no" onload="resizeIframe(this)" width="100%" frameborder="0"></iframe>  </ul>
            </div>
            <!-- /hm2v3 -->     <!-- hm2v4 -->
            <div class="hm2 hm2end hm2v1">
            <h3>Technologies</h3>
            <ul>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javase')" href="/technetwork/java/javase/overview/index.html">Java SE</a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javaseadvsuite')" href="/technetwork/java/javaseproducts/overview/index.html">Java SE Advanced &amp; Suite</a></li>
                <li><a target="" onClick="navTrack('otn','en','jdtechnologies','javaembeddded')" href="/technetwork/java/embedded/documentation/default-1971746.html">Java Embedded </a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javaee')" href="/technetwork/java/javaee/overview/index.html">Java EE</a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javame')" target="" href="/technetwork/java/embedded/javame/overview/javameoverview-2183586.html">Java ME</a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javafx')" href="/technetwork/java/javafx/overview/index.html">JavaFX</a></li>
                <li><a target="" onClick="navTrack('otn','en','jdtechnologies','javacard')" href="/technetwork/java/embedded/javacard/overview/default-1969996.html">Java Card</a></li>
                <li><a target="" onClick="navTrack('otn','en','jdtechnologies','javacard')" href="/technetwork/java/embedded/javame/java-tv/overview/javatv-2199763.html">Java TV</a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','javadb')" href="/technetwork/java/javadb/overview/index.html">Java DB</a></li>
                <li><a onClick="navTrack('otn','en','jdtechnologies','devtools')" href="/technetwork/developer-tools/index.html">Developer Tools</a>
                <ul>                 <br />
                    <br />
                    <br />
                    <h3>NightHacking Videos</h3>
                    <br />
                    <a href="http://nighthacking.com"><img alt="NightHacking Logo" src="/technetwork/java/nighthacker-2156382.png" width="150" /></a>                 <!-- <esi:include src="/technetwork/rssmanager/rss-522187.html" onerror="continue"></esi:include> </ul>
                </li>
            </ul>  -->             </ul>
                    </li>
                </ul>
                </div>
                <!-- /hm2v4 --></div>
                <!-- /hm2v0 --></div>
                <!-- END CENTER COLUMN --></div>
                </div>    
    </div>
    </div>
    <!-- /F02v0 -->
 
    <div class="footer">
 
 <!-- SS_BEGIN_SNIPPET(fragment27,ocomfooter)-->                
        <!-- U10v0 -->
<div id="u10" class="u10v0" data-trackas="ffooter" data-ocomid="u10">
<div class="u10w1">
<div class="u10w2">
<div class="u10w3">
<h5>Contact Us</h5>
<ul>
    <li>US Sales: +1.800.633.0738</li>
    <li><a data-lbl="contact-us:have-oracle-call-you" href="javascript:startCallback('0i2wzK12842','customer data')" onclick="navTrack('ocom','en','rhs-contact','callmenow-oracle');">Have Oracle Call You</a></li>
    <li><a data-lbl="contact-us:global-contacts" href="https://www.oracle.com/corporate/contact/global.html">Global Contacts</a></li>
    <li><a data-lbl="contact-us:support-directory" href="https://www.oracle.com/support/contact.html">Support Directory</a></li>
</ul>
</div>
<div class="u10w3">
<h5>About Oracle</h5>
<ul>
    <li><a data-lbl="about-oracle:company-information" href="https://www.oracle.com/corporate/index.html">Company Information</a></li>
    <li><a data-lbl="about-oracle:communities" href="https://community.oracle.com/welcome">Communities</a></li>
    <li><a data-lbl="about-oracle:careers" href="https://www.oracle.com/corporate/careers/index.html">Careers</a></li>
    <li><a data-lbl="about-oracle:customer-successes" href="https://www.oracle.com/search/customers">Customer Successes</a></li>
</ul>
</div>
</div>
<div class="u10w2">
<div class="u10w3">
<h5>Cloud</h5>
<ul>
    <li><a data-lbl="cloud:overview-of-cloud-solutions" href="https://www.oracle.com/cloud/index.html">Overview of Cloud Solutions</a></li>
    <li><a data-lbl="cloud:software(saas)" href="https://cloud.oracle.com/saas?intcmp=ocom-ft">Software (SaaS)</a></li>
    <li><a data-lbl="cloud:platform(paas)" href="https://cloud.oracle.com/paas?intcmp=ocom-ft">Platform (PaaS)</a></li>
    <li><a data-lbl="cloud:infrastructure(iaas)" href="https://cloud.oracle.com/iaas?intcmp=ocom-ft">Infrastructure (IaaS)</a></li>
    <li><a data-lbl="cloud:data(daas)" href="https://cloud.oracle.com/data-cloud?intcmp=ocom-ft">Data (DaaS)</a></li>
    <li><a data-lbl="cloud:cta-042518-footer-ocloud-trial" href="https://cloud.oracle.com/en_US/tryit?intcmp=ocom-ft">Free Cloud Trial</a></li>
</ul>
</div>
<div class="u10w3">
<h5>Events</h5>
<ul>
    <li><a data-lbl="events:oracle-openworld" href="https://www.oracle.com/openworld/index.html">Oracle OpenWorld</a></li>
    <li><a data-lbl="events:oracle-code" href="https://developer.oracle.com/code">Oracle Code</a></li>
    <li><a data-lbl="events:code-one" href="https://www.oracle.com/code-one/index.html">Oracle Code One</a></li>
    <li><a data-lbl="events:all-oracle-events" href="https://www.oracle.com/search/events">All Oracle Events</a></li>
</ul>
</div>
</div>
<div class="u10w2">
<div class="u10w3">
<h5>Top Actions</h5>
<ul>
    <li><a data-lbl="top-actions:download-java" href="https://www.java.com/download/">Download Java</a></li>
    <li><a data-lbl="top-actions:download-java-for-developers" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Download Java for Developers</a></li>
    <li><a data-lbl="top-actions:cta-050118-footer-tactions-cloud-trial" href="https://cloud.oracle.com/en_US/tryit?intcmp=ocom-ft">Try Oracle Cloud</a></li>
    <li><a data-lbl="top-actions:subscribe-to-emails" href="https://go.oracle.com/subscriptions?l_code=en-us&amp;src1=OW:O:FO">Subscribe to Emails</a></li>
</ul>
</div>
<div class="u10w3">
<h5>News</h5>
<ul>
    <li><a data-lbl="news:newsroom" href="https://www.oracle.com/corporate/press/index.html">Newsroom</a></li>
    <li><a data-lbl="news:magazines" href="http://www.oracle.com/us/corporate/publishing/index.html">Magazines</a></li>
    <li><a data-lbl="news:acquisitions" href="https://www.oracle.com/corporate/acquisitions">Acquisitions</a></li>
    <li><a data-lbl="news:blogs" href="https://blogs.oracle.com/">Blogs</a></li>
</ul>
</div>
</div>
<div class="u10w2">
<div class="u10w3">
<h5>Key Topics</h5>
<ul>
    <li><a data-lbl="key-topics:erp-erm(finance)" href="https://www.oracle.com/applications/erp/index.html">ERP, EPM (Finance)</a></li>
    <li><a data-lbl="key-topics:netsuite" href="http://www.netsuite.com/index.html">NetSuite</a></li>
    <li><a data-lbl="key-topics:hcm(hr-talent)" href="https://www.oracle.com/applications/human-capital-management/index.html">HCM (HR, Talent)</a></li>
    <li><a data-lbl="key-topics:marketing-cloud" href="https://www.oracle.com/marketingcloud/index.html">Marketing Cloud</a></li>
    <li><a data-lbl="key-topics:cx(sales-service-commerce)" href="https://www.oracle.com/applications/customer-experience/index.html">CX (Sales, Service, Commerce)</a></li>
    <li><a data-lbl="key-topics:supply-chain" href="https://www.oracle.com/applications/supply-chain-management/">Supply Chain</a></li>
    <li><a data-lbl="key-topics:industry-solutions" href="https://www.oracle.com/industries/index.html">Industry Solutions</a></li>
    <li><a data-lbl="key-topics:database" href="https://www.oracle.com/database/index.html">Database</a></li>
    <li><a data-lbl="key-topics:mysql" href="https://www.oracle.com/mysql/index.html">MySQL</a></li>
    <li><a data-lbl="key-topics:middleware" href="https://www.oracle.com/middleware/index.html">Middleware</a></li>
    <li><a data-lbl="key-topics:java" href="https://www.oracle.com/java/index.html">Java</a></li>
    <li><a data-lbl="key-topics:engineered-systems" href="https://www.oracle.com/engineered-systems/index.html">Engineered Systems</a></li>
</ul>
</div>
</div>
<div class="u10w4"><hr />
</div>
<div class="u10w5" data-trackas="footer">
<ul class="scl-icons">
    <li class="scl-facebook"><a data-lbl="scl-icon:facebook" href="http://www.oracle.com/us/social-media/facebook/index.html" title="Oracle on Facebook">Facebook</a></li>
    <li class="scl-twitter"><a data-lbl="scl-icon:twitter" href="http://www.oracle.com/us/social-media/twitter/index.html" title="Follow Oracle on Twitter">Twitter</a></li>
    <li class="scl-linkedin"><a data-lbl="scl-icon:linkedin" href="http://www.oracle.com/us/social-media/linkedin/index.html" title="Oracle on LinkedIn">LinkedIn</a></li>
    <li class="scl-googleplus"><a data-lbl="scl-icon:google-plus" href="https://plus.google.com/115607918987921226255" title="Follow Oracle on Google+">Google+</a></li>
    <li class="scl-youtube"><a data-lbl="scl-icon:you-tube" href="http://www.youtube.com/oracle/" title="Watch Oracle on YouTube">YouTube</a></li>
    <li class="scl-feed"><a data-lbl="scl-icon:rss" href="http://www.oracle.com/us/syndication/feeds/index.html" title="Oracle RSS Feeds">Oracle RSS Feed</a></li>
</ul>
<div class="u10-ologo"><a data-lbl="integrated-cloud-applications-and-platform-services" href="https://www.oracle.com/index.html">Oracle</a></div>
<h3>Integrated Cloud Applications &amp; Platform Services</h3>
<ul class="u10-links">
    <li><a data-lbl="copyright" href="https://www.oracle.com/legal/copyright.html">&copy; Oracle</a></li>
    <li><a data-lbl="site-map" href="/sitemap.html">Site Map</a></li>
    <li><a data-lbl="terms-of-use-and-privacy" href="https://www.oracle.com/legal/privacy/index.html">Terms of Use and Privacy</a></li>
    <li>
    <div id="teconsent">&nbsp;</div>
    </li>
    <li class="u10last"><a data-lbl="ad-choices" href="https://www.oracle.com/legal/privacy/privacy-policy.html#advertising">Ad Choices</a></li>
</ul>
</div>
</div>
</div>
<!-- /U10v0 -->
 
            <!-- SS_END_SNIPPET(fragment27,ocomfooter)-->
 
    </div>
  </div>
<!--SS_BEGIN_SNIPPET(fragment24,1)-->
                <!-- Start SiteCatalyst code -->
<script language="JavaScript" src="/us/assets/metrics/ora_otn.js"></script>
<!-- End SiteCatalyst code --> 
 
            <!--SS_END_SNIPPET(fragment24,1)-->
 
<!--SS_BEGIN_SNIPPET(fragment23,universal-webcache-integration)-->
                
                
            <!--SS_END_SNIPPET(fragment23,universal-webcache-integration)-->
 <!--Brightcove script line and lightbox code-->
  <script language="JavaScript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js" type="text/javascript">
  </script>
 
  <div id="bcVideoPlayer" style="DISPLAY: none">
    &nbsp;
  </div>
 
  <div class="lightbox_overlay" id="lightbox_brightcove" style="DISPLAY: none; Z-INDEX: 30000" onclick="showclose();">
    <!--spacer-->&nbsp;
   </div></div>
<!--DTM embed code - Footer -->
<script type="text/javascript">_satellite.pageBottom();</script>
<!--End-->   
</body>
</html>
 
cs


'IT > 클래스' 카테고리의 다른 글

RandomAccessFile 클래스  (0) 2018.05.25
[Java]RandomAccessFile 사용하기  (0) 2018.05.24
InputStream 클래스  (0) 2018.05.23
InetAddress 클래스  (0) 2018.05.21
Dimension 클래스  (0) 2018.05.12