2009 ( 21 ) Uni-Fi: UPnP DLNA Web Flikr YouTube IEEE802.11b/g i

Size: px
Start display at page:

Download "2009 ( 21 ) Uni-Fi: UPnP DLNA Web Flikr YouTube IEEE802.11b/g i"

Transcription

1 2009 ( 21 ) Uni-Fi: Rodney D. Van Meter III iphoo@ht.sfc.keio.ac.jp

2 2009 ( 21 ) Uni-Fi: UPnP DLNA Web Flikr YouTube IEEE802.11b/g i

3 Abstract of Bachelor s Thesis Academic Year 2009 Uni-Fi : File Access System for Heterogeneous Mobile Devices Summary Recently, a mobile device that is able to connect to the Internet and has multi functions are widespread because of the development of computer and communication engineering.for example, mobile phones sold in these days are able to generate or play a music file, movie file and photo file. Not only mobile phones but also portable music players and digital still cameras are able to connect to the Internet and has multi functions. Users are tend to have these devices in combination, like having a mobile phone and a digital still camera each. Keywords Mobile Device, Ubiquitous Computing, Device Collaboration, File Access Keio University Faculty of Environment and Information Studies Kazuhiro Imura ii

4 cogma HomeShare Mobile Media Content Sharing Uni-Fi iii

5 Uni-Fi Uni-Fi Uni-Fi iv

6 1.1 ipodtouch [5] Peer to Peer Uni-Fi Uni-Fi Uni-Fi Uni-Fi Uni-Fi Vaio Type-U v

7 Uni-Fi Uni-Fi Vaio Type-U Uni-Fi vi

8 GB 2TB CPU [6] Wi-Fi [5] 1.1 () 1

9 1.1 ipodtouch ipodtouch [5] YouTube [3] YouTube ,000 Flickr [1] Flickr Flickr DLNA [4] DLNA 2

10 1.2 YouTube Flickr DLNA Uni-Fi Uni-Fi 1.3 3

11 4

12 2 5

13

14 USB telnet B C 7

15 Web Web OS

16

17 3 10

18 3 cogma, HomeShare Mobile Media Content Sharing 4 Uni-Fi 11

19 cogma cogma [13] MAGNET Uni-Fi [14] XML Uni-Fi HomeShare Bilhanan Silverajan HomeShare [11] Peer to Peer HomeShare HomeShareClient HomeShareHub HomeShareClient HomeShareHub Uni-Fi Mobile Media Content Sharing Chih-Lin Hu [9] HomeShare UPnP [7] UPnP Uni-Fi 12

20 3.2 Uni-Fi Uni-Fi 3.1 Uni-Fi cogma HomeShare MobileMedia Content Sharing Uni-Fi 3.1 Uni-Fi 3 HomeShare MobileMedia Content Sharing

21 Uni-Fi

22

23 4.1 Uni-Fi Bluetooth [10] IEEE802.11b/g [2] Bluetooth IEEE802.11b/g Web Bluetooth IEEE802.11b/g Uni-Fi IEEE802.11b/g IEEE [8] [12] Uni-Fi Uni-Fi Uni-FI YouTube Flickr DLNA 4.1 Peer to Peer P2P Peer to Peer 4.2 P2P P2P P2P 16

24 Peer to Peer 17

25 P2P Uni-Fi P2P Uni-Fi IEEE802.11b/g P2P Uni-Fi

26 4.4 Uni-Fi Uni-Fi Uni-Fi P2P P2P P2P P2P P2P P2P P2P P2P P2P P2P 4.1 P2P 19

27 4.1 P2P P2P P2P P2P P2P P2P P2P P2P P2P P2P P2P P2P Uni-Fi Uni-Fi 1. 20

28 2. 3. XML

29 5 Uni-Fi 22

30 5.1 Uni-Fi Uni-Fi 5.1 Uni-Fi 5.1 Uni-Fi Uni-Fi Uni-Fi Uni-Fi Uni-Fi 23

31 5.2 Uni-Fi Uni-Fi 5.3 IP IP 24

32 5.3 Uni-Fi

33 Uni-Fi 5.4 Uni-Fi IP 5.5 IP 26

34 5.5 Uni-Fi Uni-Fi 5.7 XML XML Uni-Fi OS Uni-Fi 27

35 5.6 Uni-Fi XML /User/username/music/artistname/albumname/music.mp3 Uni-Fi /DeviceA/User/username/music/artistname/albumname/music,mp3 28

36 Uni-Fi 5.3 Uni-Fi Uni-Fi 4 29

37 30

38 6 Uni-Fi 31

39 6.1 Uni-Fi 6.1 Uni-Fi 6.1 Uni-Fi VAIO Type-U OS Windows XP JAVA SE Windows XP JAVA SE 6 Vaio Type-U Vaio Type-U Vaio Type-U 6.2 Vaio Type-U CPU Intel CoreSolo 1.06GHz 512MB HDD 30GB 4200rpm IEEE b/g 32

40 6.2 Uni-Fi JAVA Uni-Fi IEEE802.11b/g IP AutoIP UDP TCP 15 IP IEEE802.11b/g Uni-Fi IP IP package jp. ac. keio. sfc. ht. iphoo. unifi. device ; 2 3 import java. net. InetAddress ; 4 5 /* * 6 * 7 * 8 iphoo 9 * 10 */ 11 public class DeviceInfo { 12 private String devicename ; 13 private InetAddress deviceaddress ; 14 private int losttimes ; /* * 17 * 18 */ 19 public DeviceInfo ( String devicename, InetAddress deviceaddress ){ 20 this. devicename = devicename ; 21 this. deviceaddress = deviceaddress ; 22 this. losttimes = 0; 23 } public String getdevicename (){ 26 return devicename ; 33

41 27 } public InetAddress getdeviceaddress (){ 30 return deviceaddress ; 31 } public int getlosttimes (){ 34 return losttimes ; 35 } public void setlosttimes ( int losttime ){ 38 losttimes ++; 39 } public void clearlosttimes (){ 42 losttimes = 0; 43 } 44 } DeviceInfo public class DeviceManager { 2 private static ArrayList <DeviceInfo > DEVICE_LIST ; 3 4 public DeviceManager (){ 5 DeviceManager. DEVICE_LIST = new ArrayList <DeviceInfo >(); 6 } 7 8 public void addnewdevice ( InetAddress deviceaddress, String devicename ){ 9 DeviceInfo info = new DeviceInfo ( devicename, deviceaddress ); 10 DEVICE_LIST. add ( info ); 11 } /* * 16 * 17 * 18 inetaddresslist 19 */ 20 public void setdeviceconnection ( InetAddress inetaddresslist []){ 21 for ( int i=0; i< DEVICE_LIST. size (); i++){ 22 DEVICE_LIST. get (i). setlosttimes (); 23 } 24 for ( int i=0; i< DEVICE_LIST. size (); i++){ 25 for ( int j=0; j< inetaddresslist. length ; j++){ 26 if( DEVICE_LIST. get (i). getdeviceaddress (). equals ( inetaddresslist [j ])){ 27 DEVICE_LIST. get (i). clearlosttimes (); 28 } 29 } 30 if( DEVICE_LIST. get (i). getlosttimes () >5){ 31 DEVICE_LIST. remove (i); 32 } 33 } 34 } 35 } IP 34

42 6.2.3 XML XML <files > 2 <file > 3 <filetype >music </ filetype > 4 <filename >01 Feel That.mp3 </ filename > 5 <filepath >/ Users / iphoo / Documents / workspace / UniFiPC / mediafiles /01 Feel 6 That.mp3 </ filepath > 7 <devicename > iphoomacbook </ devicename > 8 <artist >ArtistName </ artist > 9 <album >AlbumName </ album > 10 <title >MusicTitle </ title > 11 <time >125 </ time > 12 </file > 13 <file > 14 <filetype >movie </ filetype > 15 <filename > sunday morning.3gp </ filename > 16 <filepath >/ Users / iphoo / Documents / workspace / UniFiPC / mediafiles / sunday 17 morning.3gp </ filepath > 18 <devicename > iphoomacbook </ devicename > 19 <title > sunday morning.3gp </ title > 20 <time >600 </ time > 21 </file > 22 <file > 23 <filetype >photo </ filetype > 35

43 24 <filename > PHM08_0559.JPG </ filename > 25 <filepath >/ Users / iphoo / Documents / workspace / UniFiPC / mediafiles / PHM08_0559. JPG 26 </ filepath > 27 <devicename > iphoomacbook </ devicename > 28 <date >2009/11/22 04:01:42 </ date > 29 </file > 30 </ files > mp3 MP4 JPG XML Uni-Fi Uni-Fi 4 Uni-Fi. 36

44 7 Uni-Fi Uni-Fi 37

45 7.1 Uni-Fi 7.1 Uni-Fi Uni-Fi 7.1 Uni-Fi cogma HomeShare MobileMedia Content Sharing Uni-Fi 7.2 Uni-Fi Uni-Fi Uni-Fi 7.1 Windows XP JAVA SE6 7.2 VAIO Type-U OS Windows XP JAVA SE 6 Vaio Type-U Vaio Type-U mp3 jpg mp4 XML 38

46 mp3 jpg 1000 MP jpg 4.2MB 7.1MB 0.5MB 7.4 MP4 13.9MB 302.4MB 0.1MB 7.5 mp3 3.3MB 14.6MB 1.5MB XML VAIO Type-U Ready 2 5MB 39

47 X Y Uni-Fi

48 X Y

49 Ready 2 5MB X Y Uni-Fi 3 42

50 8 8.1 Uni-Fi Uni-Fi P2P Uni-Fi Web Uni-Fi 43

51 8.2.2 JAVA Uni-Fi JAVA Uni-Fi Uni-Fi IEEE802.11b/g SSID Uni-Fi IEEE802.11b/g 44

52

53 [1] Flickr. [2] Ieee [3] Youtube. [4] Digital Living Network Alliance. Dlna. [5] Apple. ipodtouch. [6] NTT docomo. Android. [7] UPnP FORUM. Upnp. [8] Andrea Goldsmith. Wireless Communications [9] Chih-Lin Hu, Wei-Shun Liao, and Yen-Ju Huang. Mobile media content sharing in upnp-based home network environment. Journal of Information Science and Engineering 24, [10] Bluetooth SIG Inc. Bluetooth. [11] Bilhanan Silverjan, Antti Vekkeli, Tuure Vatiainen, and Jarmo Harju. Facilitating content exchange among homes, ad-hoc communities and mobile users. In The 13th IEEE International Symposium on Consumer Electronics, [12] C.-K. Toh. AD HOC MOBILE WIRELESS NETWORKS:PROTOCOLS AND SYSTEMS [13]. cogma:., [14].. Technical report,,

Web Web Web Web Web, i

Web Web Web Web Web, i 22 Web Research of a Web search support system based on individual sensitivity 1135117 2011 2 14 Web Web Web Web Web, i Abstract Research of a Web search support system based on individual sensitivity

More information

2) 2. DLNA DLNA (Version 1.5) 2 (DMC1) (SSDP) (DMS1, DMS2) (DMR1, DMR2, DMR3) (UDP) DMC1 3 DMS2 DMC1 DMS1 (HTTP) DMS1 DMR2 (RTP) DMR2 3. DLNA 4 DMC1 D

2) 2. DLNA DLNA (Version 1.5) 2 (DMC1) (SSDP) (DMS1, DMS2) (DMR1, DMR2, DMR3) (UDP) DMC1 3 DMS2 DMC1 DMS1 (HTTP) DMS1 DMR2 (RTP) DMR2 3. DLNA 4 DMC1 D 1 1 2 2 DVD LED A Networked Home Appliance Control Method Using Augmented Reality Kenya Sato, 1 Akira Sakamoto, 1 Shinya Mihara 2 and Hideki Shimada 2 Many kinds of networked home appliances connected

More information

LAN BYOD Bring Your Own Device Ballagas, et al. PC PC LAN Business Insider PC LAN LAN Henderson, et al. LAN P P Peer-to-Peer Gember, et al. UDP HTTP L

LAN BYOD Bring Your Own Device Ballagas, et al. PC PC LAN Business Insider PC LAN LAN Henderson, et al. LAN P P Peer-to-Peer Gember, et al. UDP HTTP L LAN PC LAN LAN LAN LAN LAN LAN 1 はじめに WWW World Wide Web Windows WWW Tim Berners Lee THIS IS FOR EVERYONE PC PC LAN BYOD Bring Your Own Device Ballagas, et al. PC PC LAN Business Insider PC LAN LAN Henderson,

More information

2. 2.1 Lytro [11] The Franken Camera [12] 2.2 Creative Coding Community Creative Coding Community [13]-[19] Sketch Fork 2.3 [20]-[23] 3. ourcam 3.1 ou

2. 2.1 Lytro [11] The Franken Camera [12] 2.2 Creative Coding Community Creative Coding Community [13]-[19] Sketch Fork 2.3 [20]-[23] 3. ourcam 3.1 ou 情 報 処 理 学 会 インタラクション 2013 IPSJ Interaction 2013 2013-Interaction (3EXB-06) 2013/3/2 ourcam: 1 2 ourcam ourcam: On-Site Programming Environment for Digital Photography RYO OSHIMA 1 YASUAKI KAKEHI 2 In these

More information

& Vol.2 No (Mar. 2012) 1,a) , Bluetooth A Health Management Service by Cell Phones and Its Us

& Vol.2 No (Mar. 2012) 1,a) , Bluetooth A Health Management Service by Cell Phones and Its Us 1,a) 1 1 1 1 2 2 2011 8 10, 2011 12 2 1 Bluetooth 36 2 3 10 70 34 A Health Management Service by Cell Phones and Its Usability Evaluation Naofumi Yoshida 1,a) Daigo Matsubara 1 Naoki Ishibashi 1 Nobuo

More information

Jp

Jp Jp 3 PC WT-7 i ii HDMI PDF Z 7 Z 6 Z7 https://downloadcenter.nikonimglib.com/ja/products/492/z_7.html Z6 https://downloadcenter.nikonimglib.com/ja/products/493/z_6.html HTML Z 7 https://onlinemanual.nikonimglib.com/z7_z6/ja/

More information

Jp

Jp Jp WT-5 WT-5FTP WT-5 1 FTP PC FTP 047 016 2 HTTP iphone Camera Control Pro 2 021 024 ii 3 051 FTP 05 iii http://www.nikon-image.com/support/ CompactFlash TM SanDisk XQD Microsoft Windows Windows Vista

More information

(1) BS 110 CS KDL-50W800B KDL-42W800B KDL-32W700B

(1) BS 110 CS KDL-50W800B KDL-42W800B KDL-32W700B 4-488-494-04(1) BS 110 CS KDL-50W800B KDL-42W800B KDL-32W700B 39 44 39 44 11 ( ) 1 1 1151 2 ...... 6... 7... 10... 12... 14 HDMIUSB... 15 /... 21... 25 YouTube... 28... 31... 32... 37... 37... 39... 45...

More information

1 2 3 ( ) ( ) SNS SNS Facebook %[g]( %[ ]) [ ] IT LNS (Life Networking Service) LNS LNS LNS SNS SNS 3. LNS (Life Networking S

1 2 3 ( ) ( ) SNS SNS Facebook %[g]( %[ ]) [ ] IT LNS (Life Networking Service) LNS LNS LNS SNS SNS 3. LNS (Life Networking S 情報処理学会インタラクション 2012 IPSJ Interaction 2012 2012-Interacti 2012/3/15 Life Networking Service LNS LNS twitter LNS Life Log Sharing with Life Networking Service YUSUKE NAKANO HIROSHI KAWAKAMI HIROYUKI TARUMI

More information

1 Web [2] Web [3] [4] [5], [6] [7] [8] S.W. [9] 3. MeetingShelf Web MeetingShelf MeetingShelf (1) (2) (3) (4) (5) Web MeetingShelf

1 Web [2] Web [3] [4] [5], [6] [7] [8] S.W. [9] 3. MeetingShelf Web MeetingShelf MeetingShelf (1) (2) (3) (4) (5) Web MeetingShelf 1,a) 2,b) 4,c) 3,d) 4,e) Web A Review Supporting System for Whiteboard Logging Movies Based on Notes Timeline Taniguchi Yoshihide 1,a) Horiguchi Satoshi 2,b) Inoue Akifumi 4,c) Igaki Hiroshi 3,d) Hoshi

More information

LANFTP 1 FTP 047 PC 016 FTP HTTP 024 iphone Camera Control Pro 2 ii

LANFTP 1 FTP 047 PC 016 FTP HTTP 024 iphone Camera Control Pro 2 ii Jp LANFTP 1 FTP 047 PC 016 FTP 2 021 HTTP 024 iphone Camera Control Pro 2 ii 3 WT-5 051 A 07 FTP 039 WT-4 iii http://www.nikon-image.com/support/ CompactFlash TM SanDisk XQD Microsoft Windows Windows Vista

More information

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

近距離無線通信による機器連携技術

近距離無線通信による機器連携技術 Device Connectivity Technologies Using Short-distance Wireless Telecommunication 田村俊哉 増田勲 あらまし Wi-Fi Bluetooth NFC TV TV Abstract Having seamless connectivity among digital devices in a multi-network environment

More information

COOLPIX A300 PDF / Adobe Acrobat Reader Adobe ibooks ios ViewNX-i / SnapBridge / / SnapBridge A12 COOLPIX A300 M

COOLPIX A300 PDF / Adobe Acrobat Reader Adobe ibooks ios ViewNX-i / SnapBridge / / SnapBridge A12   COOLPIX A300 M ii 1 2 7 SnapBridge 12 18 22 vi Jp COOLPIX A300 PDF / Adobe Acrobat Reader Adobe ibooks ios ViewNX-i / SnapBridge / / SnapBridge A12 http://downloadcenter.nikonimglib.com COOLPIX A300 Model Name: N1517

More information

Jp

Jp Jp UT-1 UT-1 FTP UT-1 WT-5 WT-5 09 021 FTP 051 021 FTP 051 ii 036 Camera Control Pro 2 044 FTP 051 iii iv http://www.nikon-image.com/support/ Microsoft Windows Windows Vista Microsoft Corporation Mac OSApple

More information

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows ActionScript3.0 1 1 YouTube Flash ActionScript3.0 Face detection and hiding using ActionScript3.0 for streaming video on the Internet Ryouta Tanaka 1 and Masanao Koeda 1 Recently, video streaming and video

More information

( ) 15 cm USB PC

( ) 15 cm USB PC Cat S41 ( ) 15 cm USB PC 2017 Caterpillar. CAT CATERPILLAR BUILT FOR IT Caterpillar Yellow Power Edge ID Caterpillar Bullitt Mobile Ltd. Caterpillar Inc. Bullitt Mobile Ltd. Caterpillar Inc. Bluetooth

More information

1., 1 COOKPAD 2, Web.,,,,,,.,, [1]., 5.,, [2].,,.,.,, 5, [3].,,,.,, [4], 33,.,,.,,.. 2.,, 3.., 4., 5., ,. 1.,,., 2.,. 1,,

1., 1 COOKPAD 2, Web.,,,,,,.,, [1]., 5.,, [2].,,.,.,, 5, [3].,,,.,, [4], 33,.,,.,,.. 2.,, 3.., 4., 5., ,. 1.,,., 2.,. 1,, THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE.,, 464 8601 470 0393 101 464 8601 E-mail: matsunagah@murase.m.is.nagoya-u.ac.jp, {ide,murase,hirayama}@is.nagoya-u.ac.jp,

More information

ii SnapBridge vi

ii SnapBridge vi ii 1 2 8 SnapBridge 13 19 24 vi COOLPIX B500 PDF / Adobe Acrobat Reader Adobe ibooks ios ViewNX-i / SnapBridge / / SnapBridgeA13 http://downloadcenter.nikonimglib.com COOLPIX B500 Model Name: N1516 ii

More information

()

() 4-531-004-04(1) BS 110 CS KDL-60W600B / 48W600B / 40W600B 40 45 40 45 11() 11 1151 2 ...... 6... 7... 10... 12... 14 HDMIUSB... 15 /... 22... 26 YouTube... 29... 32... 33... 38... 38... 40... 46... 48...

More information

IPSJ SIG Technical Report Vol.2014-DBS-159 No.6 Vol.2014-IFAT-115 No /8/1 1,a) 1 1 1,, 1. ([1]) ([2], [3]) A B 1 ([4]) 1 Graduate School of Info

IPSJ SIG Technical Report Vol.2014-DBS-159 No.6 Vol.2014-IFAT-115 No /8/1 1,a) 1 1 1,, 1. ([1]) ([2], [3]) A B 1 ([4]) 1 Graduate School of Info 1,a) 1 1 1,, 1. ([1]) ([2], [3]) A B 1 ([4]) 1 Graduate School of Information Science and Technology, Osaka University a) kawasumi.ryo@ist.osaka-u.ac.jp 1 1 Bucket R*-tree[5] [4] 2 3 4 5 6 2. 2.1 2.2 2.3

More information

LAN LAN LAN LAN LAN LAN,, i

LAN LAN LAN LAN LAN LAN,, i 22 A secure wireless communication system using virtualization technologies 1115139 2011 3 4 LAN LAN LAN LAN LAN LAN,, i Abstract A secure wireless communication system using virtualization technologies

More information

AirMac ネットワーク構成の手引き

AirMac ネットワーク構成の手引き AirMac 1 1 5 6 AirMac 6 7 AirMac Extreme AirMac Express 7 AirMac 8 AirMac Express 8 AirMac 9 AirMac 10 AirTunes 10 AirMac Extreme AirMac Express 10 2 13 15 Mac OS X IP 16 Mac OS X AirMac 3 17 AirMac 17

More information

unitech PA600 Rugged En PDA - RFID HF - unitech G Ver.1.2

unitech PA600 Rugged En PDA - RFID HF - unitech G Ver.1.2 unitech PA600 Rugged En PDA - RFID HF - unitech 400618G Ver.1.2 - 2009 Unitech Oracle Embedded Software Licensing Program FCC - i 16 PA600 1. 5V/2A AC USB DC 2. PA600 DC 8 SDRAM 60 C C C C ii PA600 RFID

More information

Android LAN 1 1,, Google Android. Android, Android,. Android x86 CPU,,,. A study of performance improvement of a wireless LAN bases on Android termina

Android LAN 1 1,, Google Android. Android, Android,. Android x86 CPU,,,. A study of performance improvement of a wireless LAN bases on Android termina Android LAN 1 1,, Google Android. Android, Android,. Android x86 CPU,,,. A study of performance improvement of a wireless LAN bases on Android terminals analysis Kaori Miki 1 and Masato Oguchi 1 In reccent

More information

Ver.2.00

Ver.2.00 Ver.2.00 ... 3 1.... 3 1.1. PC Link Tool... 3 1.2. PC Link Tool... 4 1.3.... 4 2.... 5 2.1.... 5 2.2. PC Link Tool... 6 2.3. PC Link Tool... 7 3.... 12 3.1.... 12 3.2.... 14 3.3.... 15 3.4.... 20 3.5....

More information

P2P P2P peer peer P2P peer P2P peer P2P i

P2P P2P peer peer P2P peer P2P peer P2P i 26 P2P Proposed a system for the purpose of idle resource utilization of the computer using the P2P 1150373 2015 2 27 P2P P2P peer peer P2P peer P2P peer P2P i Abstract Proposed a system for the purpose

More information

IPSJ SIG Technical Report Vol.2014-EIP-63 No /2/21 1,a) Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on tra

IPSJ SIG Technical Report Vol.2014-EIP-63 No /2/21 1,a) Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on tra 1,a) 1 1 2 1 Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on traffic Abstract: The equipment with Wi-Fi communication function such as a smart phone which are send on a regular

More information

AirMac ネットワーク for Windows

AirMac ネットワーク for Windows AirMac for Windows Windows XP Windows 2000 1 1 5 6 AirMac 6 7 AirMac Extreme AirMac Express 7 AirMac for Windows 7 AirMac Express 8 AirMac 9 AirTunes 9 AirMac Extreme 10 2 11 AirMac 11 AirMac 12 AirMac

More information

unitech PA500 Enterprise PDA Rev. A

unitech PA500 Enterprise PDA Rev. A unitech PA500 Enterprise PDA Rev. A PA500 Enterprise PDA Unitech Copyright 2007 unitech Electronics Co., Ltd. Web : http:\\www.unitech-japan.co.jp Bluetooth Bluetooth SIG Microsoft Windows ActiveSync

More information

Google (1) 2013 Sony Corporation Printed in Malaysia NW-ZX1

Google (1) 2013 Sony Corporation Printed in Malaysia NW-ZX1 Google 4-475-930-02(1) 2013 Sony Corporation Printed in Malaysia NW-ZX1 http://rd1.sony.net/help/dmp/nwzx1/ja/ 34 39 2 USB USB 3 Wi-FiGoogle Media Go Content Transfer 4 Bluetooth 5 1 2 3 6 WALKMAN Guide

More information

2) TA Hercules CAA 5 [6], [7] CAA BOSS [8] 2. C II C. ( 1 ) C. ( 2 ). ( 3 ) 100. ( 4 ) () HTML NFS Hercules ( )

2) TA Hercules CAA 5 [6], [7] CAA BOSS [8] 2. C II C. ( 1 ) C. ( 2 ). ( 3 ) 100. ( 4 ) () HTML NFS Hercules ( ) 1,a) 2 4 WC C WC C Grading Student programs for visualizing progress in classroom Naito Hiroshi 1,a) Saito Takashi 2 Abstract: To grade student programs in Computer-Aided Assessment system, we propose

More information

LAN 1 FTP 050 PC 014 FTP HTTP 022 Camera Control Pro 2 ii

LAN 1 FTP 050 PC 014 FTP HTTP 022 Camera Control Pro 2 ii Jp LAN 1 FTP 050 PC 014 FTP 2 019 HTTP 022 Camera Control Pro 2 ii 3 WT-6 WT-5 055 A 05 FTP041 Nikon Manual Viewer 2 App StoreGoogle Play * iii http://www.nikon-image.com/support/ XQD CompactFlashSanDisk

More information

IP IP DHCP..

IP IP DHCP.. NICE 2008 4 14 1 NICE 2 1.1.................... 2 2 3 2.1........................................ 3 2.2....................................... 5 2.3.................................... 6 2.4...................................

More information

Jp

Jp Jp WT-6 WT-6 WT-6 FTP05 1 FTP PC FTP 050 014 2 HTTP Camera Control Pro 2 019 022 ii Model Name: WT-6 N1503 Model Name: WT-6B N1527 Model Name: WT-6A N1526 Model Name: WT-6C N1528 3 055 Nikon Manual Viewer

More information

21 e-learning Development of Real-time Learner Detection System for e-learning

21 e-learning Development of Real-time Learner Detection System for e-learning 21 e-learning Development of Real-time Learner Detection System for e-learning 1100349 2010 3 1 e-learning WBT (Web Based training) e-learning LMS (Learning Management System) LMS WBT e-learning e-learning

More information

ユーザーガイド

ユーザーガイド PRS-T1 2011 Sony Corporation 4-288-613-03(1) Wi-Fi Wi-Fi Reader Store Wikipedia Wikipedia 2 3 ...5...7...9...19 4 http://www.sony.jp/support/reader/ 9 URL URL Web Wi-Fi 43 Web 97 6 ebook Transfer for Reader

More information

A Study on Traffic Characteristics in Multi-hop Wireless Networks 2010 3 Yoichi Yamasaki ( ) 21 Local Area Network (LAN) LAN LAN LAN (AP, Access Point) LAN AP LAN AP AP AP (MWN, Multi-hop Wireless Network)

More information

Printer Driverセットアップ編

Printer Driverセットアップ編 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer PowerPoint Outlook Microsoft Corporation Microsoft Corporation Intel Intel Inside Itanium Pentium Intel Corporation USB-IF Universal

More information

Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android

Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android WiCounter Version 2.0 27 .. 2. 3. 2 4. 5. 6. 7 Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android 16 17 18 19. 20 21 22 23 24 info ST 25 26 AP

More information

Microsoft Word - deim2011_new-ichinose-20110325.doc

Microsoft Word - deim2011_new-ichinose-20110325.doc DEIM Forum 2011 B7-4 252-0882 5322 E-mail: {t08099ai, kurabaya, kiyoki}@sfc.keio.ac.jp A Music Search Database System with a Selector for Impressive-Sections of Continuous Data Aya ICHINOSE Shuichi KURABAYASHI

More information

スライド 1

スライド 1 Gateway Gateway 1 Power Line 2 3 / 10M 1M 100k 10k 03 04 05 06 BlueTooth 5GHz MCPLC HF ZigBee PLC LAN M16C/6S(M306S) IT800PLC Itran IT800MicrosoftSCP M16C-PLC Gateway/Bridge Products With SH7751R,Windows

More information

樋口氏(論文10).indd

樋口氏(論文10).indd Trend of the home network technology Masao Higuchi, Hidemi Usuba Summary The appearance of DLNA and DTCP-IP have had a strong impact on the popularization of home AV network for digital AV devices. This

More information

AccessflÌfl—−ÇŠš1

AccessflÌfl—−ÇŠš1 ACCESS ACCESS i ii ACCESS iii iv ACCESS v vi ACCESS CONTENTS ACCESS CONTENTS ACCESS 1 ACCESS 1 2 ACCESS 3 1 4 ACCESS 5 1 6 ACCESS 7 1 8 9 ACCESS 10 1 ACCESS 11 1 12 ACCESS 13 1 14 ACCESS 15 1 v 16 ACCESS

More information

LAN FTP 1 FTP 047 PC 016 FTP 2 021 HTTP 024 iphone Camera Control Pro 2 ii

LAN FTP 1 FTP 047 PC 016 FTP 2 021 HTTP 024 iphone Camera Control Pro 2 ii Jp LAN FTP 1 FTP 047 PC 016 FTP 2 021 HTTP 024 iphone Camera Control Pro 2 ii 3 WT-5 051 A 07 FTP 039 WT-4 UT-1 iii http://www.nikon-image.com/support/ XQD CompactFlash TM SanDisk Microsoft Windows Windows

More information

卒業論文2.dvi

卒業論文2.dvi 15 GUI A study on the system to transfer a GUI sub-picture to the enlarging viewer for operational support 1040270 2004 2 27 GUI PC PC GUI Graphical User Interface PC GUI GUI PC GUI PC PC GUI i Abstract

More information

Java (5) 1 Lesson 3: x 2 +4x +5 f(x) =x 2 +4x +5 x f(10) x Java , 3.0,..., 10.0, 1.0, 2.0,... flow rate (m**3/s) "flow

Java (5) 1 Lesson 3: x 2 +4x +5 f(x) =x 2 +4x +5 x f(10) x Java , 3.0,..., 10.0, 1.0, 2.0,... flow rate (m**3/s) flow Java (5) 1 Lesson 3: 2008-05-20 2 x 2 +4x +5 f(x) =x 2 +4x +5 x f(10) x Java 1.1 10 10 0 1.0 2.0, 3.0,..., 10.0, 1.0, 2.0,... flow rate (m**3/s) "flowrate.dat" 10 8 6 4 2 0 0 5 10 15 20 25 time (s) 1 1

More information

Copyright 2001 by Junichi Sawase

Copyright 2001 by Junichi Sawase JAIST Reposi https://dspace.j Title 知識コミュニティを活性化するインフォーマルコミュ ニケーションツールの開発 Author(s) 澤瀬, 順一 Citation Issue Date 2001-03 Type Thesis or Dissertation Text version author URL http://hdl.handle.net/10119/716

More information

PC Link Tool PC Link Tool PC Link Tool PC Link Tool

PC Link Tool PC Link Tool PC Link Tool PC Link Tool Ver. 1.04 ... 3 1.... 3 1.1. PC Link Tool... 3 1.2. PC Link Tool... 4 1.3.... 4 2.... 5 2.1.... 5 2.2. PC Link Tool... 6 2.3. PC Link Tool... 7 3....11 3.1.... 11 3.2.... 13 3.3.... 14 3.4.... 19 3.5....

More information

( )

( ) NAIST-IS-MT0851100 2010 2 4 ( ) CR CR CR 1980 90 CR Kerberos SSH CR CR CR CR CR CR,,, ID, NAIST-IS- MT0851100, 2010 2 4. i On the Key Management Policy of Challenge Response Authentication Schemes Toshiya

More information

21 A contents organization method for information sharing systems

21 A contents organization method for information sharing systems 21 A contents organization method for information sharing systems 1125140 2010 3 4 IT i Abstract A contents organization method for information sharing systems Aoki, Wataru Organizations to share information,

More information

(Group-based Secure Remote Access)[4], DLNA GSRA NAT NAT-f(NAT-free protocol)[5],, DMP M-SEARH(Multicast) DLNA 機器の検索 HTTP GET (DDD) サーバの情報取得 機種の一覧表示 D

(Group-based Secure Remote Access)[4], DLNA GSRA NAT NAT-f(NAT-free protocol)[5],, DMP M-SEARH(Multicast) DLNA 機器の検索 HTTP GET (DDD) サーバの情報取得 機種の一覧表示 D GSRA DLNA DLNA(Digital Living Network Alliance), DLNA,, DLNA,, GSRA(Group-based Secure Remote Access) DLNA,, Proposal of Remote DLNA ommunication System for GSRA NAKI HTTA As a guideline DLNA (Digital

More information

IPSJ SIG Technical Report Vol.2015-GN-93 No.29 Vol.2015-CDS-12 No.29 Vol.2015-DCC-9 No /1/27 1,a) 1 1 LAN IP 1), 2), 3), 4), 5) [

IPSJ SIG Technical Report Vol.2015-GN-93 No.29 Vol.2015-CDS-12 No.29 Vol.2015-DCC-9 No /1/27 1,a) 1 1 LAN IP 1), 2), 3), 4), 5) [ 1,a) 1 1 LAN IP 1), 2), 3), 4), 5) 1. 2011 50 60 [14] [14] 1 NTT 3-4-1 Shibaura, Minato-ku, Tokyo 108-8118, Japan a) t.nakakura@ntt.com Web P2P(Peer to Peer) P2P [19] 1 World Wide Web Consortium( W3C)

More information

PeerPool IP NAT IP UPnP 2) Bonjour 3) PeerPool CPU 4) 2 UPnP Bonjour PeerPool CPU PeerPool PeerPool PPv2 PPv2 2. PeerPool 2.1 PeerPool PeerPool PoolGW

PeerPool IP NAT IP UPnP 2) Bonjour 3) PeerPool CPU 4) 2 UPnP Bonjour PeerPool CPU PeerPool PeerPool PPv2 PPv2 2. PeerPool 2.1 PeerPool PeerPool PoolGW PPv2: 1 2 3 4 PeerPool PeerPool 3 PPv2(PeerPool version 2) PPv2: A Transparent Network Architecture for Naive Inter-Smart Environment Communication Michinobu Shimatani, 4 Yu Enokibori, 2 ismail Arai 3

More information

i

i 21 Fault-Toleranted Authentication Data Distribution Protocol for Autonomous Distributed Networks 1125153 2010 3 2 i Abstract Fault-Toleranted Authentication Data Distribution Protocol for Autonomous Distributed

More information

IPSJ SIG Technical Report Vol.2010-GN-74 No /1/ , 3 Disaster Training Supporting System Based on Electronic Triage HIROAKI KOJIMA, 1 KU

IPSJ SIG Technical Report Vol.2010-GN-74 No /1/ , 3 Disaster Training Supporting System Based on Electronic Triage HIROAKI KOJIMA, 1 KU 1 2 2 1, 3 Disaster Training Supporting System Based on Electronic Triage HIROAKI KOJIMA, 1 KUNIAKI SUSEKI, 2 KENTARO NAGAHASHI 2 and KEN-ICHI OKADA 1, 3 When there are a lot of injured people at a large-scale

More information

2nd-1.dvi

2nd-1.dvi 7 ZEAL : OptiPlex GX 7 ZEAL ZEAL-Z ZEAL-C ZEAL-C CPU Memory OS Intel Pentium (3GHz) GB Windows Vista Business (-bit) ZEAL Microsoft Windows Mobile 5. ZEAL Bluetooth 3 ZEAL 5 Microsoft Visual C# 5 66 OS

More information

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD  CD/DVD DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV SoundRipper 2 SoundRipper 5 SoundRipper 9 DVD 12 16 CD 25 CD 31 35 SoundRipper 38 FAQ 40 42 1 DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS

More information

PC PDA SMTP/POP3 1 POP3 SMTP MUA MUA MUA i

PC PDA SMTP/POP3 1 POP3 SMTP MUA MUA MUA i 21 The private mailers synchronization operation for plural terminals 1125083 2010 3 1 PC PDA SMTP/POP3 1 POP3 SMTP MUA MUA MUA i Abstract The private mailers synchronization operation for plural terminals

More information

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr Eclipse 1,a) 1,b) 1,c) ( IDE) IDE Graphical User Interface( GUI) GUI GUI IDE View Eclipse Development of Eclipse Plug-in to present an Object Diagram to Debug Environment Kubota Yoshihiko 1,a) Yamazaki

More information

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

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 tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp 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

More information

18 1 1 1.1...................................... 1 1.2................................... 1 1.3................................... 1 2 2 2.1......................... 2 2.1.1...........................

More information

DEIM Forum 2017 H2-2 Android LAN Android 1 Android LAN

DEIM Forum 2017 H2-2 Android LAN Android 1 Android LAN DEIM Forum 2017 H2-2 Android LAN 112-8610 2-1-1 163-8677 1-24-2 E-mail: {ayano,oguchi}@ogl.is.ocha.ac.jp, sane@cc.kogakuin.ac.jp Android 1 Android LAN Ayano KOYANAGI, Saneyasu YAMAGUCHI, and Masato OGUCHI

More information

Vol. 48 No. 4 Apr LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for L

Vol. 48 No. 4 Apr LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for L Vol. 48 No. 4 Apr. 2007 LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for Learning to Associate LAN Construction Skills with TCP/IP

More information

Wireless Plus.book

Wireless Plus.book Seagate Wireless Plus 1AYBA2 Seagate Wireless Plus 2013 Seagate Technology LLC. Seagate Seagate Technology Wave Seagate Media Seagate Technology LLC ipod ipad iphone Time Machine Safari Mac Apple Computer,

More information

Computer Security Symposium October 2013 Android OS kub

Computer Security Symposium October 2013 Android OS kub Computer Security Symposium 2013 21-23 October 2013 Android OS 243-0292 1030 y.kita@ccy.kanagawa-it.ac.jp mirang@nw.kanagawa-it.ac.jp 889-2192 1-1 kubota@cs.miyazaki-u.ac.jp oka@cs.miyazaki-u.ac.jp Android

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

1 4 4 [3] SNS 5 SNS , ,000 [2] c 2013 Information Processing Society of Japan

1 4 4 [3] SNS 5 SNS , ,000 [2] c 2013 Information Processing Society of Japan SNS 1,a) 2 3 3 2012 3 30, 2012 10 10 SNS SNS Development of Firefighting Knowledge Succession Support SNS in Tokyo Fire Department Koutarou Ohno 1,a) Yuki Ogawa 2 Hirohiko Suwa 3 Toshizumi Ohta 3 Received:

More information

i

i 14 i ii iii iv v vi 14 13 86 13 12 28 14 16 14 15 31 (1) 13 12 28 20 (2) (3) 2 (4) (5) 14 14 50 48 3 11 11 22 14 15 10 14 20 21 20 (1) 14 (2) 14 4 (3) (4) (5) 12 12 (6) 14 15 5 6 7 8 9 10 7

More information

Google (1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887

Google (1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887 Google 4-472-597-02(1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887 http://rd1.sony.net/help/dmp/nwf880/ja/ 35 40 2 USB USB 3 Wi-FiGoogle Media Go Content Transfer 4 Bluetooth 5 1 2 3 WALKMAN

More information

TCP/IP IEEE Bluetooth LAN TCP TCP BEC FEC M T M R M T 2. 2 [5] AODV [4]DSR [3] 1 MS 100m 5 /100m 2 MD 2 c 2009 Information Processing Society of

TCP/IP IEEE Bluetooth LAN TCP TCP BEC FEC M T M R M T 2. 2 [5] AODV [4]DSR [3] 1 MS 100m 5 /100m 2 MD 2 c 2009 Information Processing Society of IEEE802.11 [1]Bluetooth [2] 1 1 (1) [6] Ack (Ack) BEC FEC (BEC) BEC FEC 100 20 BEC FEC 6.19% 14.1% High Throughput and Highly Reliable Transmission in MANET Masaaki Kosugi 1 and Hiroaki Higaki 1 1. LAN

More information

橡Webcamユーザーガイド03.PDF

橡Webcamユーザーガイド03.PDF Desktop On-Call Version 4 Webcam extension Pak for Windows Webcam extension Pak Desktop On-Call Version 4 Web PC i Desktop On-Call Version 4 PC PC Desktop On-Call Version 4 PC Windows 98 Windows 98SE Windows

More information

Web Web Web Web i

Web Web Web Web i 28 Research of password manager using pattern lock and user certificate 1170369 2017 2 28 Web Web Web Web i Abstract Research of password manager using pattern lock and user certificate Takuya Mimoto In

More information

( ) 15 cm USB PC

( ) 15 cm USB PC Cat S40 ( ) 15 cm USB PC 2015 Caterpillar. CAT CATERPILLAR BUILT FOR IT Caterpillar Yellow Power Edge ID Caterpillar Bullitt Mobile Ltd Caterpillar Inc Bullitt Mobile Ltd Caterpillar Inc Cat S40... 1...

More information

コミュニケーションユーティリティー編

コミュニケーションユーティリティー編 はじめに動付録デジタル複合機用 取扱説明書ソフトウェア ( コミュニケーションユーティリティー編 ) スキャナー設定作環境 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer Excel PowerPoint Outlook Windows Microsoft Corporation Microsoft Corporation

More information

大学表紙.PS

大学表紙.PS Wi-Fi LAN A Campus-wide Wireless LAN System in Kagoshima University Shared with Telecommunication Carriers Masato MASUYA, Koichi SHIMOZONO, Itaru TAKAHASHI, Syunsei AIBA, Tomonori KAWAHARA, Tamotsu FURUYA,

More information

29 jjencode JavaScript

29 jjencode JavaScript Kochi University of Technology Aca Title jjencode で難読化された JavaScript の検知 Author(s) 中村, 弘亮 Citation Date of 2018-03 issue URL http://hdl.handle.net/10173/1975 Rights Text version author Kochi, JAPAN http://kutarr.lib.kochi-tech.ac.jp/dspa

More information

LHD-LAN_E_G_PDF.}.j...A...p65

LHD-LAN_E_G_PDF.}.j...A...p65 LHD-LAN -2- LHD-LAN LHD-LAN Mac OS 9 Mac OS 9 Mac OS 9 Mac OS 9-3- 1 Windows LHD-LAN CD- ROM 1. 1. 2. 2. Mac OS X LHD-LAN CD- ROM 1. 2. Mac OS X 3. 1.CD-ROM 2.Mac OS X 3. -4- 2 1. 2. 3 LHD-LAN 4 OK LHD-LAN

More information

3_39.dvi

3_39.dvi Vol. 49 No. 3 Mar. 2008 Web 1 2 PC Web Web Windows Web Access Watchdog Systems for Children Protection Tatsumi Ueda 1 and Yoshiaki Takai 2 For today s children, the Internet is one of the most familiar

More information

IPSJ SIG Technical Report Vol.2013-CE-122 No.16 Vol.2013-CLE-11 No /12/14 Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(I

IPSJ SIG Technical Report Vol.2013-CE-122 No.16 Vol.2013-CLE-11 No /12/14 Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(I Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(Information and Communication Technology) (Google [2] [5] ) 2. Google 2.1 Google Google [2]( 1) Google Web, Google Web Google Chrome

More information

三税協力の実質化 : 住民税の所得税閲覧に関する国税連携の効果

三税協力の実質化 : 住民税の所得税閲覧に関する国税連携の効果 Kwansei Gakuin University Rep Title 三 税 協 力 の 実 質 化 : 住 民 税 の 所 得 税 閲 覧 に 関 する 国 税 連 携 の 効 果 Author(s) Suzuki, Ushio, 鈴 木, 潮 Citation 経 済 学 論 究, 65(4): 175-197 Issue Date 2012-03-20 URL http://hdl.handle.net/10236/9133

More information

IEEE802.11n LAN WiMAX(Mobile Worldwide Interoperability for Microwave Access) LTE(Long Term Evolution) IEEE LAN Bluetooth IEEE LAN

IEEE802.11n LAN WiMAX(Mobile Worldwide Interoperability for Microwave Access) LTE(Long Term Evolution) IEEE LAN Bluetooth IEEE LAN 23 IEEE802.11n LAN 43422519 ( ) 24 2 6 IEEE802.11n LAN WiMAX(Mobile Worldwide Interoperability for Microwave Access) LTE(Long Term Evolution) IEEE802.11 LAN Bluetooth 2009 9 IEEE802.11 LAN IEE E802.11n

More information

UT-1 UT-1 D800 D800E FTP UT-1 WT-5 UT-1 D800 D800E A 1.10 B 1.10 UT UT FTP 062 WT-5 06 ii 024 FTP 069

UT-1 UT-1 D800 D800E FTP UT-1 WT-5 UT-1 D800 D800E A 1.10 B 1.10 UT UT FTP 062 WT-5 06 ii 024 FTP 069 Jp UT-1 UT-1 D800 D800E FTP UT-1 WT-5 UT-1 D800 D800E A 1.10 B 1.10 UT-1 2.0 01 UT-1 016 FTP 062 WT-5 06 ii 024 FTP 069 FTP PC037 FTP082 iphone Camera Control Pro 2 043 HTTP 047 D A 1.10 B 1.10 iii iv

More information

VGF-WA1

VGF-WA1 VAIO http://vcl.vaio.sony.co.jp/ VGF-WA1 2007 Sony Corporation / Printed in China 3-094-116-01 (1) VAIO VAIO ...2 3 13... 13...14... 15...15...16... 17... 18...18...19...21...22...22...23... 25...25...26

More information

EPSON EasyMP Multi PC Projection Ver.1.00 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.00 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

IPSJ SIG Technical Report Vol.2013-GN-86 No.35 Vol.2013-CDS-6 No /1/17 1,a) 2,b) (1) (2) (3) Development of Mobile Multilingual Medical

IPSJ SIG Technical Report Vol.2013-GN-86 No.35 Vol.2013-CDS-6 No /1/17 1,a) 2,b) (1) (2) (3) Development of Mobile Multilingual Medical 1,a) 2,b) 3 24 3 (1) (2) (3) Development of Mobile Multilingual Medical Communication Support System and Its Introduction for Medical Field Shun Ozaki 1,a) Takashi Yoshino 2,b) Aguri Shigeno 3 Abstract:

More information

Core1 FabScalar VerilogHDL Cache Cache FabScalar 1 CoreConnect[2] Wishbone[3] AMBA[4] AMBA 1 AMBA ARM L2 AMBA2.0 AMBA2.0 FabScalar AHB APB AHB AMBA2.0

Core1 FabScalar VerilogHDL Cache Cache FabScalar 1 CoreConnect[2] Wishbone[3] AMBA[4] AMBA 1 AMBA ARM L2 AMBA2.0 AMBA2.0 FabScalar AHB APB AHB AMBA2.0 AMBA 1 1 1 1 FabScalar FabScalar AMBA AMBA FutureBus Improvement of AMBA Bus Frame-work for Heterogeneos Multi-processor Seto Yusuke 1 Takahiro Sasaki 1 Kazuhiko Ohno 1 Toshio Kondo 1 Abstract: The demand

More information

ID 3) 9 4) 5) ID 2 ID 2 ID 2 Bluetooth ID 2 SRCid1 DSTid2 2 id1 id2 ID SRC DST SRC 2 2 ID 2 2 QR 6) 8) 6) QR QR QR QR

ID 3) 9 4) 5) ID 2 ID 2 ID 2 Bluetooth ID 2 SRCid1 DSTid2 2 id1 id2 ID SRC DST SRC 2 2 ID 2 2 QR 6) 8) 6) QR QR QR QR Vol. 51 No. 11 2081 2088 (Nov. 2010) 2 1 1 1 which appended specific characters to the information such as identification to avoid parity check errors, before QR Code encoding with the structured append

More information

IPSJ SIG Technical Report * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka

IPSJ SIG Technical Report * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka Kikuchi With the rapid growth in demand of smartphone use, the development of

More information

修士論文

修士論文 27 Mobile Ad Hoc Networks An Ant-based Routing Algorithm with Multi-phase Pheromone and Power-saving in Mobile Ad Hoc Networks 14T0013 Shohei Miyashita E-mail: shohei.miyashita.4j@stu.hosei.ac.jp : Abstract

More information

1 Web DTN DTN 2. 2 DTN DTN Epidemic [5] Spray and Wait [6] DTN Android Twitter [7] 2 2 DTN 10km 50m % %Epidemic 99% 13.4% 10km DTN [8] 2

1 Web DTN DTN 2. 2 DTN DTN Epidemic [5] Spray and Wait [6] DTN Android Twitter [7] 2 2 DTN 10km 50m % %Epidemic 99% 13.4% 10km DTN [8] 2 DEIM Forum 2014 E7-1 Web DTN 112 8610 2-1-1 UCLA Computer Science Department 3803 Boelter Hall, Los Angeles, CA 90095-1596, USA E-mail: yuka@ogl.is.ocha.ac.jp, mineo@cs.ucla.edu, oguchi@computer.org Web

More information

User's Guide

User's Guide magicolor 2300 DL 1800687-014B magicolor 2300 DL Windows TCP/IP Web URL http://www.minolta-qms.co.jp/support/userreg/index.html QMS MINOLTA-QMS magicolor MINOLTA-QMS, Inc. Minolta Peerless Systems Corporation

More information

LHD-LAN ...[.U.[.Y.}.j...A.. V05.p65

LHD-LAN ...[.U.[.Y.}.j...A.. V05.p65 LHD-LAN -2- LHD-LAN LHD-LAN Mac OS 9 Mac OS 9 Mac OS 9 Mac OS 9-3- 1 Windows LHD-LAN CD- ROM 1. 1. 2. 2. Mac OS X LHD-LAN CD- ROM 1. 2. Mac OS X 3. 1.CD-ROM 2.Mac OS X 3. -4- 2 1. 2. 3 LHD-LAN 4 OK LHD-LAN

More information

NEC NP-P502HJD/NP-P502WJD APPS 1. APPS IMAGE EXPRESS UTILITY Miracast WEB WEB IMAGE EXPRESS UTILITY LITE 2

NEC NP-P502HJD/NP-P502WJD APPS 1. APPS IMAGE EXPRESS UTILITY Miracast WEB WEB IMAGE EXPRESS UTILITY LITE 2 NEC NP-P502HJD/NP-P502WJD APPS 1. APPS 2 2. 6 3. 10 4. IMAGE EXPRESS UTILITY 16 5. Miracast 17 6. WEB 18 6-1. WEB 19 6-2. IMAGE EXPRESS UTILITY LITE 23 6-3. PROJECTOR CONTROL 26 7. 27 7-1. 27 7-2. 27 7-3.

More information

, i

, i 23 The reserch of the users action patterns and the suitable delivery of coupons for them 1145120 2012 2 13 , i Abstract The reserch of the users action patterns and the suitable delivery of coupons for

More information

LAN LAN26 LAN LAN A B C A iphone LAN LAN iphone iphone SongPal 4 B WPS AOSS LAN WPS Wi-Fi Protected SetupLAN LAN 8 LAN C LAN LAN LAN WPS AOSS 10 2

LAN LAN26 LAN LAN A B C A iphone LAN LAN iphone iphone SongPal 4 B WPS AOSS LAN WPS Wi-Fi Protected SetupLAN LAN 8 LAN C LAN LAN LAN WPS AOSS 10 2 LAN 3 LAN LAN SRS-X9 BLUETOOTH http://rd1.sony.net/help/speaker/srs-x9/jp/ LAN LAN26 LAN LAN A B C A iphone LAN LAN iphone iphone SongPal 4 B WPS AOSS LAN WPS Wi-Fi Protected SetupLAN LAN 8 LAN C LAN LAN

More information

86 Development of a Course Classification Support System for the Awarding of Degrees using Syllabus Data MIYAZAKI Kazuteru, IDA Masaaki, YOSHIKANE Fuyuki, NOZAWA Takayuki and KITA Hajime Research in Academic

More information