インターネットマガジン2001年4月号―INTERNET magazine No.75
|
|
|
- さゆり このえ
- 7 years ago
- Views:
Transcription
1 i illustration : Hada Eiji 206 INTERNET magazine 2001/4
2 jdc.sun.co.jp/wireless/ INTERNET magazine 2001/4 207
3 Jump 01 Jump 02 Jump 01 Jump i.nttdocomo.co.jp/normal/iappli/ n_iappli.html 208 INTERNET magazine 2001/4
4 i Jump 01 java.sun.com/products/cldc/ INTERNET magazine 2001/4 209
5 210 INTERNET magazine 2001/4
6 i INTERNET magazine 2001/4 211
7 INTERNET magazine 2001/4
8 i s s s 1JK1.3J2ME-CLC1.0i-JAE Lite 5 > javac -g:none -bootclasspath c: i-jade ijade-f.jar;c: j2me_cldc bin api classes -d class *.java 2C: i-jade i-jade-f.jar c: classes 6 > preverify -classpath c: classes; -d 3C: j2me_cldc bin api classes java preverified class c: classes 7 4class >jar cvfm NetMemo.jar -C preverified. preverified INTERNET magazine 2001/4 213
9 A 1 2 B C /** * : (Alone) * : 1.0 */ import java.io.*; 1 import javax.microedition.io.*; 1 import com.nttdocomo.ui.*; 2 // public class MemoAlone extends IApplication 3 // public void start() 3 // MainPanel p = new MainPanel( this ); 4 isplay.setcurrent( p ); 5 // PhoneSystem.setAttribute( PhoneSystem.EV_BACKLIGHT, PhoneSystem.ATTR_ BACKLIGHT_ON ); 6 // class MainPanel extends Panel implements SoftKeyListener 7 // public static final int ROW = 18; public static final int COL = 3; 8 private TextBox textbox; // private Label lbl; // // public MainPanel( IApplication iapp ) // settitle( "(Alone)" ); 10 // setsoftlabel( Frame.SOFT_KEY_1, "" ); 11 setsoftlabel( Frame.SOFT_KEY_2, "" ); // setsoftkeylistener( this ); 12 // textbox = new TextBox( "", ROW, COL, TextBox.ISPLAY_ANY ); 13 lbl = new Label( "" ); add( textbox ); 13 add( lbl ); // ScratchPad readscratch(); 14 A B C INTERNET magazine 2001/4
10 i // public void softkeypressed( int softkey ) // 1() if( Frame.SOFT_KEY_1 == softkey ) // IApplication.getCurrentApp().terminate(); 15 else if( Frame.SOFT_KEY_2 == softkey ) // ScratchPad // writescratch(); 16 readscratch(); // public void softkeyreleased( int softkey ) 17 // ScratchPad F public void writescratch() try // ScratchPad 18 ataoutputstream out = Connector.openataOutputStream( "scratchpad:///0" ); out.writeutf( textbox.gettext() ); 19 out.close(); 20 E E F lbl.settext( "!!" ); 21 catch( IOException e ) lbl.settext( "ScratchPad" ); // ScratchPad public void readscratch() String str = ""; G try // ScratchPad 24 atainputstream in = Connector.openataInputStream( "scratchpad:///0" ); str = in.readutf(); 25 in.close(); 26 // ScratchPad textbox.settext( str ); 27 catch( IOException e ) lbl.settext( "ScratchPad" ); G INTERNET magazine 2001/4 215
11 Å 1 import java.io.*; import javax.microedition.io.*; import com.nttdocomo.io.*; import com.nttdocomo.ui.*; 2 3 // class MainPanel extends Panel implements SoftKeyListener, ComponentListener // CGI public static final String UPLOA_CGI = "upload.cgi"; public static final String OWNLOA_CGI = "download.cgi"; // public static final int public static final int // private Button up; // private Button NG = '0'; OK = '1'; down; 5 4 // setcomponentlistener( this ); 6 // textbox = new TextBox( "", ROW, COL, TextBox.ISPLAY_ANY ); up = new Button( "" ); down = new Button( "" ); lbl = new Label( "" ); add( textbox ); add( up ); add( down ); add( lbl ); // public void componentaction( Component c, int type, int param ) if( c.equals( up ) ) // txtupload(); else if( c.equals( down ) ) // txtownload(); 216 INTERNET magazine 2001/4
12 // public void txtupload() int res; // 1 try lbl.settext( "" ); 2 // HttpConnection conn = ( HttpConnection )Connector.open( IApplication.getCurrentApp().getSourceURL() + UPLOA_CGI, Connector.REA_WRITE, true ); 3 // conn.setrequestmethod( HttpConnection.POST ); 4 conn.setrequestproperty( "Content-Type", "text/plain" ); 5 // OutputStream out = conn.openoutputstream(); 6 // // out.write( textbox.gettext().getbytes() ); 7 // out.close(); 8 A B 1 2 A B 6 7 getbytes() 8 9 C // conn.connect(); 9 // InputStream in = conn.openinputstream(); 10 res = in.read(); 11 in.close(); 12 // conn.close(); 13 // if( res!= OK ) lbl.settext( "" ); return; lbl.settext( "!!" ); catch(exception e) lbl.settext( "" ); C // public void txtownload() int res; // try lbl.settext( "" ); // HttpConnection conn = ( HttpConnection )Connector.open( IApplication.getCurrentApp().getSourceURL() + OWNLOA_CGI, Connector.REA, true ); 14 // conn.setrequestmethod( HttpConnection.GET ); // conn.connect(); // InputStream in = conn.openinputstream(); // byte [] by = new byte[ in.available() - 1 ]; E E F // res = in.read(); if( res!= OK ) lbl.settext( "" ); return; // in.read( by ); 17 // // String str = new String( by ); 18 // textbox.settext( str ); // in.close(); // conn.close(); 19 lbl.settext( "!!" ); catch( Exception e ) lbl.settext( "" ); F INTERNET magazine 2001/4 217
13 <html> <head> <title>netmemo</title> </head> <body> <OBJECT declare id="netmemo" data="netmemo.jam" type="application/x-jam"></object> <A ijam="#netmemo" href="netmemo.html">netmemo</a> </body> </html> AppName = NetMemo AppVer = 1.0 PackageURL = NetMemo.jar AppSize = 2622 KvmVer = CLC-1.0 SPsize = 1024 AppClass = NetMemo LastModified = Mon, 05 Feb :48:24 UseNetwork = http 218 INTERNET magazine 2001/4
14 i INTERNET magazine 2001/4 219
15 [ インターネットマガジンバックナンバーアーカイブ ] ご利用上の注意 この PF ファイルは 株式会社インプレス R&( 株式会社インプレスから分割 ) が 1994 年 ~2006 年まで発行した月刊誌 インターネットマガジン の誌面を PF 化し インターネットマガジンバックナンバーアーカイブ として以下のウェブサイト All-in-One INTERNET magazine 2.0 で公開しているものです このファイルをご利用いただくにあたり 下記の注意事項を必ずお読みください 記載されている内容 ( 技術解説 URL 団体 企業名 商品名 価格 プレゼント募集 アンケートなど) は発行当時のものです 収録されている内容は著作権法上の保護を受けています 著作権はそれぞれの記事の著作者 ( 執筆者 写真の撮影者 イラストの作成者 編集部など ) が保持しています 著作者から許諾が得られなかった著作物は収録されていない場合があります このファイルやその内容を改変したり 商用を目的として再利用することはできません あくまで個人や企業の非商用利用での閲覧 複製 送信に限られます 収録されている内容を何らかの媒体に引用としてご利用する際は 出典として媒体名および月号 該当ページ番号 発行元 ( 株式会社インプレス R&) コピーライトなどの情報をご明記ください オリジナルの雑誌の発行時点では 株式会社インプレス R&( 当時は株式会社インプレス ) と著作権者は内容が正確なものであるように最大限に努めましたが すべての情報が完全に正確であることは保証できません このファイルの内容に起因する直接的および間接的な損害に対して 一切の責任を負いません お客様個人の責任においてご利用ください このファイルに関するお問い合わせ先 All-in-One INTERNET magazine 編集部 [email protected] Copyright Impress R&, an Impress Group company. All rights reserved.
インターネットマガジン1996年12月号―INTERNET magazine No.23
jhttp://www.ibm.park.org/japan/mongolrally/index.html 8 13 252 INTERNET magazine 1996/12 8 14 8 15 INTERNET magazine 1996/12 253 8 15 8 17 254 INTERNET magazine 1996/12 8 18 8 24 INTERNET magazine 1996/12
インターネットマガジン2003年11月号―INTERNET magazine No.106
photo: Tsushima Takao 114 +++ internet magazine 2003.11 +++ +++ internet magazine 2003.11 +++ 115 116 +++ internet magazine 2003.11 +++ +++ internet magazine 2003.11 +++ 117 118 +++ internet magazine 2003.11
インターネットマガジン1998年2月号―INTERNET magazine No.37
204 INTERNET magazine /2 INTERNET magazine /2 205 Illust : MACOTT A 206 INTERNET magazine /2 INTERNET magazine /2 207 B C 208 INTERNET magazine /2 E D jhttp://www.sony.co.jp/productspark/ Consumer/CAR-AV/NVX-FW8.html
インターネットマガジン2003年7月号―INTERNET magazine No.102
text : illust : 110 +++ internet magazine 2003.07 +++ http://www.dinop.com/ +++ internet magazine 2003.07 +++ 111 http://www3.plala.or.jp/aur/ migi.htm http://www.aa.alpha-net.ne. jp/bosuke/ http://www.hf.rim.or.jp/~iam387
インターネットマガジン2003年8月号―INTERNET magazine No.103
86 +++ internet magazine 2003.08 +++ text p.9091p.9495p.104109 p.100103 p.9699 photo Watari Tokuhiro Tsushima Takao +++ internet magazine 2003.08 +++ 87 1 SS SS S S 3 SS S S 88 +++ internet magazine 2003.08
インターネットマガジン1999年1月号―INTERNET magazine No.48
204 INTERNET magazine 1999/1 Illust : Monkey Punch INTERNET magazine 1999/1 205 206 INTERNET magazine 1999/1 FFF SSS START! SP212 SP212 SP220 SP226 FFF SSS SP224 INTERNET magazine 1999/1 207 j j 208 INTERNET
インターネットマガジン1995年6月号―INTERNET magazine No.5
1 2 3 4 5 6 95 1 ABC Co. 046 INTERNET MAGAZINE 1995/6 INTERNET MAGAZINE 1995/6 047 TCP-NET TCP-NET WINC WINC Infoweb Infoweb IIJ IIJ ATT ATT SINET SINET TISN TISN WIDE WIDE 048 INTERNET MAGAZINE 1995/6
インターネットマガジン1995年10月号―INTERNET magazine No.9
072 INTERNET MAGAZINE 1995/10 INTERNET MAGAZINE 1995/10 073 074 INTERNET MAGAZINE 1995/10 C O O L H O M E P A G E [email protected] http://www.axes.co.jp/ 1 INTERNET MAGAZINE 1995/10 075 Tips 1 076 INTERNET
インターネットマガジン1997年1月号―INTERNET magazine No.24
282 INTERNET magazine 997/ VDOLiveVer.2.0 StreamWorks Ver.2.0 VivoActiveVer..0 Intel Streaming Media Viewer Ver.. AudioLink AcousticPlayer Ver.0.5.3 RealAudioVer.3.0 2 Shockwave Audio Netscape Media Player
インターネットマガジン2001年5月号―INTERNET magazine No.76
186 INTERNET magazine 2001/5 Illustration : Tsuchiya Hideru INTERNET magazine 2001/5 187 s s s s s s 188 INTERNET magazine 2001/5 INTERNET magazine 2001/5 189 190 INTERNET magazine 2001/5 A A INTERNET
インターネットマガジン1995年7月号―INTERNET magazine No.6
Buena Vista MoviePlex Marquee http://www.wdp.com/bvpm/moovplex.html The pages and in-line images on this server are (c) 1994 The Walt Disney Company. All Rights reserved. INTERNET MAGAZINE 1995/7 097 (WWW
インターネットマガジン2001年9月号―INTERNET magazine No.80
+CD-ROM Å 5 M0.9. A N S W E R function calc () { t = ocument.getelementbyi("tboy"); for(i = 0; i < t.rows.length; i++) { win = Number(t.rows[i].cells[3].firstChil.noeValue); lost = Number(t.rows[i].cells[].firstChil.noeValue);
インターネットマガジン1999年3月号―INTERNET magazine No.50
Photo : Nakamura Tohru 222 INTERNET magazine 1999/3 INTERNET magazine 1999/3 223 2000 +CD-ROM 224 INTERNET magazine 1999/3 HOTALL Ver.5.0 +CD-ROM Adobe PageMill 3.0 +CD-ROM INTERNET magazine 1999/3 225
インターネットマガジン2000年2月号―INTERNET magazine No.61
Grade up your web pages! Grade up your web pages! 180 INTERNET magazine 2000/2 Photo :Nakamura Tohru INTERNET magazine 2000/2 181 2 SSP.188 1 SSP.184 3 SSP.190 4 SSP.192 182 INTERNET magazine 2000/2 6
インターネットマガジン2001年7月号―INTERNET magazine No.78
3,000 Photo : Nakamura Tohru 188 INTERNET magazine 2001/7 INTERNET magazine 2001/7 189 190 INTERNET magazine 2001/7 www.nk.rim.or.jp/~t_kimata/cgi/ INTERNET magazine 2001/7 191 c d 2 1 192 INTERNET magazine
インターネットマガジン1998年12月号―INTERNET magazine No.47
3.0 3.0 A MagnaviIp98Htmltips +CD-ROM A N S W E R A N S W E R 300 INTERNET magazine 998/
インターネットマガジン1996年11月号―INTERNET magazine No.22
0 INTERNET magazine 996/ Battle Menu ROUND ROUND vs ActiveX ROUND3Java vs ActiveX ROUND4 ROUND5 HTML ROUND6 ccd-romwinmsie30 jhttp://home.netscape.com/ comprod/mirror/client_download.html illustrator :
インターネットマガジン2001年3月号―INTERNET magazine No.74
photo : Michael Yamashita / PPS 188 INTERNET magazine 2001/3 INTERNET magazine 2001/3 189 h h 190 INTERNET magazine 2001/3 h h h h 1 2 3 INTERNET magazine 2001/3 191 DATA www.ntt.com www.ntt-east.co.jp
インターネットマガジン2003年10月号―INTERNET magazine No.105
CMS text : 72 +++ internet magazine 2003.10 +++ +++ internet magazine 2003.10 +++ 73 Part 1 1 3 2 74 +++ internet magazine 2003.10 +++ CMS CMS +++ internet magazine 2003.10 +++ 75 76 +++ internet magazine
インターネットマガジン1999年10月号―INTERNET magazine No.57
Jump internet.impress.co.jp/magnavi/ip9910/htmltips/ A N S W E R1 function checktext (text) { if (text.match (/ w+@ w+/)) return true; alert (""); return false;
インターネットマガジン1999年3月号―INTERNET magazine No.50
Photo : Nakamura Tohru 196 INTERNET magazine 1999/3 I N D E X 198 [ 205 [ 210 [ INTERNET magazine 1999/3 197 198 INTERNET magazine 1999/3 1 NTT / 1800 2 23 1800 3600 2 8 3600 5/10 200 3/10 200 30 1 30%
インターネットマガジン2001年10月号―INTERNET magazine No.81
+CD-ROM Å 5 5.5 M0.9. A N S W E R A N S W E R RT { isplay: none; } function rubyswitch(on)
インターネットマガジン2000年5月号―INTERNET magazine No.64
msn.microsoft.com/ownloas/webtechnology/ie/iepreview.asp +CD-ROM 5 5.5 3 A N S W E R1 A:link IMG { filter: alpha(opacity=30); } A:hover IMG { filter: alpha(opacity=100); }
インターネットマガジン2001年2月号―INTERNET magazine No.73
+CD-ROM Å 5 5.5 M8 A N S W E R A N S W E R
インターネットマガジン2000年2月号―INTERNET magazine No.61
+CD-ROM A N S W E R nowtime = new Date ( ); Y = new Date (000, 0, ); countdown = Y.getTime ( ) - nowtime.gettime ( ); if (countdown > 0) ocument.write (""); else ocument.write ("
インターネットマガジン2000年9月号―INTERNET magazine No.68
+CD-ROM Å 5 5.5 A N S W E R1 BODY { margin-right: 1px; margin-left: 180px; backgroun: #FFFFCC url (logo.gif) no-repeat fixe 0px 300px; A N S W E R
インターネットマガジン2001年4月号―INTERNET magazine No.75
+CD-ROM Å 4 5 4 6 M8 A N S W E R 6 A N S W E R
インターネットマガジン1999年7月号―INTERNET magazine No.54
A MagnaviIp9907Htmltips +CD-ROM 3 3 A N S W E R HTML TIPS&TRICKS A N S W E R function Init() { block.style.setexpression("left",
インターネットマガジン1997年12月号―INTERNET magazine No.35
3.0 3.0 A N S W E R1 A N S W E R2 326 INTERNET magazine 1997/12 1 3.0 var ypos=0; var ylimit =1200; var timerid; onunloa =cleartimeout(timerid); scrollwin(); function
インターネットマガジン2002年9月号―INTERNET magazine No.92
特 集 家で 会社で 街中で 無線LANはどこでも使える最強のネットワークインフラになりつ つある このすごさは単純に線がなくなっただけの話ではない ノートパソコンと無線 LAN機能さえあれば いつでもどこでも高速なネットワークを常に同じコンピュータ環境 で使えるのだ これはライフスタイルを一変させてしまう大事件である 今回の特集は この無線LANに焦点をあて 導入方法から話題のホットスポットの選び方まで情報ギッ
インターネットマガジン2000年5月号―INTERNET magazine No.64
206 INTERNET magazine 2000/5 2000 INTERNET magazine 2000/5 207 208 INTERNET magazine 2000/5 P r o v i d e r2000 provider.impress.co.jp INTERNET magazine 2000/5 209 210 INTERNET magazine 2000/5 P r o v
インターネットマガジン1999年2月号―INTERNET magazine No.49
1 9 9 9 0 2 I N D E X magazine 1999/2 325 http://www.lion.co.jp/life/sectop/ NIFTY http://www.nifty.ne.jp/winter/ 1 9 9 9 NEW YEAR SPECIAL 326 magazine 1999/2 http://yuujirou.inac.co.jp/ http://www.mypage.ne.jp/siwasu/
インターネットマガジン2000年10月号―INTERNET magazine No.69
ı +CD-ROM Å 5 M17 A N S W E R1 function show (istr) { obj = ocument.getelementbyi (istr); obj.style.visibility = "visible"; function hie (istr) { obj = ocument.getelementbyi(istr);
インターネットマガジン2000年9月号―INTERNET magazine No.68
202 INTERNET magazine 2000/9 DATA CENTER INTERNET magazine 2000/9 203 204 INTERNET magazine 2000/9 www.idcinit.com INTERNET magazine 2000/9 205 DATA CENTER 206 INTERNET magazine 2000/9 INTERNET magazine
インターネットマガジン1998年12月号―INTERNET magazine No.47
1 9 9 8 1 2 I N D E X magazine 1998/12 353 http://www.sainet.or.jp/ ~ eshibuya/ Novel Station http://www.ohba.co.jp/novel/ 1 9 9 8 B O O K SPECIAL 354 magazine 1998/12 http://www.jali.or.jp/usi/ http://www.jali.or.jp/tti/
インターネットマガジン1997年9月号―INTERNET magazine No.32
I N D E X HOT YELLOW PAGES s s WWW on CD INTERNET magazine 1997/9 415 WHAT S TOKYO DECADENCE http://www.t-decadence.com/ N E W 9 7 0 9 @TOWER.JP http://www.towerrecords.co.jp/ 416 INTERNET magazine 1997/9
インターネットマガジン1998年11月号―INTERNET magazine No.46
1 9 9 8 1 1 I N D E X magazine 1998/11 361 Yahoo! SCOREBOARD http://sports.yahoo.co.jp/ Sports Watch http://www.watch.impress.co.jp/sports/ 1 9 9 8 SPORTS SPECIAL 362 magazine 1998/11 Nikkan Sports News
インターネットマガジン2000年8月号―INTERNET magazine No.67
Photo : Nakamura Tohru 298 INTERNET magazine 2000/8 LA GAUDE NICE MONACO PARIS SOPHIA ANTIPOLIS CANNES 600km IBM La Gaude www.lagaude.ibm.com IT IT IT La GaudeIBM IBM La Gaude Director Christian Poujardieu
インターネットマガジン1995年8月号―INTERNET magazine No.7
064 INTERNET MAGAZINE 1995/8 Copyright 1995 Netscape Communications Corporation INTERNET MAGAZINE 1995/8 065 point 2 point 7 point 6 point 3 point 5 point 4 point 1 066 INTERNET MAGAZINE 1995/8 1 2 3 4
インターネットマガジン1999年11月号―INTERNET magazine No.58
+CD-ROM A N S W E R function mysearch (num, text) { ocument.forms[num].elements[0].value=text; ocument.forms[num].submit();
インターネットマガジン1999年8月号―INTERNET magazine No.55
A MagnaviIp9908Htmltips +CD-ROM 3 3 A N S W E R if (ocument.all) { // IE, bar.style.pixelleft = x; bar.style.pixelleft = x + 80; else if(ocument.layers) { // ocument.bar.left = x; ocument.bar.left = x
インターネットマガジン1997年4月号―INTERNET magazine No.27
I N D E X HOT YELLOW PAGES s s WWW on CD INTERNET magazine 1997/4 395 WHAT S http://www2.channel.or.jp/tam/tac/tamhome.htm N E W 9 7 0 4 OZ-mall TopPage http://www.oz-net.co.jp/ 396 INTERNET magazine 1997/4
インターネットマガジン1996年12月号―INTERNET magazine No.23
26 INTERNET magazine 1996/12 HTML S jhttp://www.microsoft.com/truetype/css/gall ery/spec2.htm S jhttp://www.hidaho.com/c/ S jhttp://www.microsoft.com/ie/most/howto/lay out/winston/wclub.htm
インターネットマガジン2003年1月号―INTERNET magazine No.96
88 +++ internet magazine +++ +++ internet magazine +++ 89 CoCoon 124,800 kwww.sony.jp/products/consumer/cocoon/ AX10 99,800 k121ware.com 90 +++ internet magazine +++ RD-XS40 139,800 kwww3.toshiba.co.jp/dvd/j/
インターネットマガジン2003年3月号―INTERNET magazine No.98
1 http://www.cpan.org/ http://search.cpan.org/ http://www.cpan.org/ open(input,'in-file'); while(){ push (input,$_); } close(input); @output = sort @input; open(output,'>out-file'); forearch $i
インターネットマガジン2004年7月号―INTERNET magazine No.114
74 +++ internet magazine 2004.07 +++ Part s Part 2 s Part 3 s text : illust: +++ internet magazine 2004.07 +++ 75 Part 76 +++ internet magazine 2004.07 +++ +++ internet magazine 2004.07 +++ 77 http://www.myblog.jp/
インターネットマガジン1997年7月号―INTERNET magazine No.30
I N D E X HOT YELLOW PAGES s s WWW on CD INTERNET magazine 1997/7 373 WHAT S http://www.toei.co.jp/movie/new_mov/shitsuraku/ N E W 9 7 0 7 Lost Highway http://losthighway-jp.com/ 374 INTERNET magazine
<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63>
[email protected] (Tel: 087-864-2244(FAX )) Vodafone( J-Phone) (J-SA51 090-2829-9999) JavaTM ( Vappli ) SUN ( SUN ) Java2SE(J2SDK1.3.1 Java Standard Edition) Java2MEforCLDC(WTK1.04 Wireless Tool
インターネットマガジン2000年1月号―INTERNET magazine No.60
272 INTERNET magazine 2000/1 INTERNET magazine 2000/1 273 check 1 274 INTERNET magazine 2000/1 check 2 Cc To To Bcc INTERNET magazine 2000/1 275 check 3 check 4 276 INTERNET magazine 2000/1 INTERNET magazine
インターネットマガジン1997年5月号―INTERNET magazine No.28
290 INTERNET magazine 1997/5 Photo Picatti Dandolini 3 14 97 95 1 97 97 * NT 97 NT 95 97 95 97 NT 97 * INTERNET magazine 1997/5 291 292 INTERNET magazine 1997/5 97 97 97 1 2 3 CD-ROM 97 CD-ROM setup.exe
インターネットマガジン1997年6月号―INTERNET magazine No.29
Photo : Picatti Dandolini 262 INTERNET magazine 1997/6 1 2 3 4 5 INTERNET magazine 1997/6 263 264 INTERNET magazine 1997/6 INTERNET magazine 1997/6 265 266 INTERNET magazine 1997/6 INTERNET magazine 1997/6
インターネットマガジン2004年10月号―INTERNET magazine No.117
78 +++ internet magazine 2004.10 +++ +++ internet magazine 2004.10 +++ 79 80 +++ internet magazine 2004.10 +++ http://www.geocities.jp/ikeboo_2000/ AExpert/ +++ internet magazine 2004.10 +++ 81 http://www.cloud-soft.net/
インターネットマガジン1997年9月号―INTERNET magazine No.32
83 j http://www.open-air.com/ 84 jhttp://www.ronjons.com/ 324 INTERNET magazine 1997/9 INTERNET magazine 1997/9 325 85 86 Q A jhttp://www.lifestylesdirect.com/ jhttp://www.landsend.com/ 87 Cyber Cash jhttp://www.cybercash.com/
インターネットマガジン1996年3月号―INTERNET magazine No.14
Common Gateway Interface +SSI j 164 INTERNET magazine 1996/3 INTERNET magazine 1996/3 165 Common Gateway Interface 5 2 3 1 2 3 4 1 4 j Common Gateway Interface j j j j 166 INTERNET magazine 1996/3 INTERNET
インターネットマガジン1998年5月号―INTERNET magazine No.40
Illustrator :Den Yamauchi HEAVY GEAR F-22 Air Dominance Fighter HELLFIRE 322 INTERNET magazine 1998/5 HEAVY GEAR INTERNET magazine 1998/5 323 324 INTERNET magazine 1998/5 INTERNET magazine 1998/5 325 F-22
Java演習(4) -- 変数と型 --
50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends
新・明解Java入門
537,... 224,... 224,... 32, 35,... 188, 216, 312 -... 38 -... 38 --... 102 --... 103 -=... 111 -classpath... 379 '... 106, 474!... 57, 97!=... 56 "... 14, 476 %... 38 %=... 111 &... 240, 247 &&... 66,
インターネットマガジン2000年11月号―INTERNET magazine No.70
illustration: Hasegawa Takako 222 INTERNET magazine 2000/11 pointgate.com INTERNET magazine 2000/11 223 B2b2C C2b2C C2b2B Q A Q A Q A Q A Q A www.askme.com Q A www.askme.com/viewprofile.asp?xid=119254
インターネットマガジン2004年9月号―INTERNET magazine No.116
illust: MIZUTANI DOKU 128 +++ internet magazine 2004.09 +++ +++ internet magazine 2004.09 +++ 129 A B D E A B C C D E 130 +++ internet magazine 2004.09 +++ +++ internet magazine 2004.09 +++ 131 132 +++
インターネットマガジン1999年1月号―INTERNET magazine No.48
Photo : Nakamura Tohru 256 INTERNET magazine 1999/1 1 3 1 4 3 2 2 4 INTERNET magazine 1999/1 257 2 1 3 4 3 1 2 4 258 INTERNET magazine 1999/1 Macromedia Adobe Microsoft Adobe PhotoImpact 4.2 PicturePublisher
インターネットマガジン1999年8月号―INTERNET magazine No.55
Photo: Nakamura Tohru Watari Tokuhiro Takioka Kentaro Model: Mori Hirotaka 256 INTERNET magazine 1999/8 V e n t u r e B u s ii n e s s INTERNET magazine 1999/8 257 258 INTERNET magazine 1999/8 V e n t
10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV
[email protected] [email protected] http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20
インターネットマガジン2006年2月号―INTERNET magazine No.133
24 INTERNET magazine N e w I n d u s t r i a l T r e n d o f 2 0 0 6 2006 C O N T E N T S 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 photograph tsushima san INTERNET magazine 25 Web Serv N e w I n
インターネットマガジン2002年9月号―INTERNET magazine No.92
"Break on through to the other side" BUINE IMPROVIATION photo : Tokiwa Takehiko Marcus Printup A G E N A +++ internet magazine +++ 243 BUINEIMPROVIATION N E W F A C E Photo : Watari Tokuhiro 244 +++ internet
K227 Java 2
1 K227 Java 2 3 4 5 6 Java 7 class Sample1 { public static void main (String args[]) { System.out.println( Java! ); } } 8 > javac Sample1.java 9 10 > java Sample1 Java 11 12 13 http://java.sun.com/j2se/1.5.0/ja/download.html
- 2 Copyright (C) 2006. All Rights Reserved.
- 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24
インターネットマガジン2004年4月号―INTERNET magazine No.111
111 82 +++ internet magazine 2004.04 +++ p.084-p.089 p.090-p.099 p.100-p.105 p.106-p.109 p.110-p.111 p.112-p.115 text : illust. : +++ internet magazine 2004.04 +++ 83 002 84 +++ internet magazine 2004.04
IE6 2 BMI chapter1 Java 6 chapter2 Java 7 chapter3 for if 8 chapter4 : BMI 9 chapter5 Java GUI 10 chapter6 11 chapter7 BMI 12 chap
1-1 1-2 IE6 2 BMI 3-1 3-2 4 5 chapter1 Java 6 chapter2 Java 7 chapter3 for if 8 chapter4 : BMI 9 chapter5 Java GUI 10 chapter6 11 chapter7 BMI 12 chapter8 : 13-1 13-2 14 15 PersonTest.java KazuateGame.java
インターネットマガジン2002年5月号―INTERNET magazine No.88
VOICES : 2002 MAY 222 226 230 232 233 cover : +++ internet magazine +++ 221 Vol.2 Morphizm of Style 222 +++ internet magazine +++ +++ internet magazine +++ 223 224 +++ internet magazine +++ Hitoshi Nagasawa
Java (9) 1 Lesson Java System.out.println() 1 Java API 1 Java Java 1
Java (9) 1 Lesson 7 2008-05-20 Java System.out.println() 1 Java API 1 Java Java 1 GUI 2 Java 3 1.1 5 3 1.0 10.0, 1.0, 0.5 5.0, 3.0, 0.3 4.0, 1.0, 0.6 1 2 4 3, ( 2 3 2 1.2 Java (stream) 4 1 a 5 (End of
Oracle Forms Services R6i
Creation Date: Jul 04, 2001 Last Update: Jul 31, 2001 Version: 1.0 0 0... 1 1...3 1.1... 3 1.2... 3 1.3... 3 2...4 2.1 C/S... 4 2.2 WEB... 5 2.3 WEB... 5 2.4 JAVABEAN... 6 3 JAVABEAN...7 3.1... 7 3.2 JDEVELOPER...
: : : TSTank 2
Java (8) 2008-05-20 Lesson6 Lesson5 Java 1 Lesson 6: TSTank1, TSTank2, TSTank3 java 2 car1 car2 Car car1 = new Car(); Car car2 = new Car(); car1.setcolor(red); car2.setcolor(blue); car2.changeengine(jet);
HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f
1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway InterfaceWeb HTML Web Web CGI CGI CGI Perl C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java / Java Java CGI Servlet
