ユーザー入力およびユーザーに 出力処理入門. Ivan Tanev

Size: px
Start display at page:

Download "ユーザー入力およびユーザーに 出力処理入門. Ivan Tanev"

Transcription

1 プログラミング III 第 5 回 :JSP 入門. ユーザー入力およびユーザーに 出力処理入門 Ivan Tanev

2 講義の構造 1.JSP 入門 2. ユーザー入力およびユーザーに出力処理入門 3. 演習 2

3 Lecture3_Form.htm 第 3 回のまとめ Web サーバ Web 1 フォーム static 2 Internet サ3 ーブレ4 HTML 5 ットテキスト dynamic サーブレット コンテナ Web クライアント HTML テキスト HTML テキスト Lecture3_Servlet_XXXXXXXX.class <HTML><HEAD> <TITLE>To All Students of Programming 3 at Doshisha University</TITLE> <META HTTP- EQUIV='Content-Type' Content='text/html; charset=shift_jis'></meta></head><bod Y BGCOLOR="#FFFFFF"> <CENTER> <Hello, your first servlet is working!</h2> <H3>[ local time is <font color=blue>wed May 10 17:00:18 KST 2017</font> ]</H3> </CENTER></BODY></HTML> ユーザー 3

4 第 3 回のまとめ サーブレット HelloFromServlet 呼び出す前 サーブレット HelloFromServlet 呼び出す後 4

5 第 3 回のまとめ サーブレット HelloFromServlet の Java ソース import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class HelloFromServlet extends HttpServlet { public void service (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // set content type and other response header fields first response.setcontenttype("text/html"); // get the communication channel with the requesting client PrintWriter out = response.getwriter(); } } // write the data out.println("<html>" + "<HEAD>" + " <TITLE>To All Students of Programming 3 at Doshisha University</TITLE>" + " <META HTTP-EQUIV='Content-Type' Content='text/html; charset=shift_jis'></meta>" + "</HEAD>" + "<BODY BGCOLOR=\"#FFFFFF\">" + " <CENTER>" + " <H2>Congratulations, your first servlet is working!</h2>" + " <H3>[ local time is <font color=blue>" + new java.util.date() + "</font> ]</H3>" + " </CENTER>" + "</BODY>" + "</HTML>"); 5

6 第 3 回のまとめ サーブレット HelloFromServlet の Java ソース import java.io.*; import javax.servlet.*; import javax.servlet.http.*; コンパイルが必要 public class HelloFromServlet extends HttpServlet { public void service (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // set content type and other response header fields first response.setcontenttype("text/html"); // get the communication channel with the requesting client PrintWriter out = response.getwriter(); スタチックな WWW コンテンツ (HTML Tags, etc.) } } // write the data out.println("<html>" + "<HEAD>" + " <TITLE>To All Students of Programming 3 at Doshisha University</TITLE>" + " <META HTTP-EQUIV='Content-Type' Content='text/html; charset=shift_jis'></meta>" + "</HEAD>" + "<BODY BGCOLOR=\"#FFFFFF\">" + " <CENTER>" + " <H2>Congratulations, your first servlet is working!</h2>" + " <H3>[ local time is <font color=blue>" + new java.util.date() + "</font> ]</H3>" + " </CENTER>" + "</BODY>" + "</HTML>"); ダイナミックな WWW コンテンツ スタチックな WWW コンテンツ (HTML Tags, etc.) 6

7 Web サーバ サーブレット コンテナ JSP ページ スクリプトを実行する Page.jsp スタチックな WWW コンテンツおよびダイナミックな WWW コンテンツのスクリプト JSP とは Lecture_5_page_XXXX.jsp <HTML> <HEAD> <TITLE> Programming Java 3, Lecture 5, ID=XXXX </TITLE> page contenttype= "text/html; charset=shift_jis" %> </HEAD> <BODY> include file = "logo.htm" %> <BR> <% String UserInputStr = request.getparameter("inbox_1"); if (UserInputStr!= null) { スタチックな WWW コンテンツ (HTML Tags, etc.) ダイナミックな WWW コンテンツ UserInputStr = new String(UserInputStr.getBytes("ISO "), "SHIFT_JIS"); out.println("output to the user using <B>out.println</B>:<BR>"); out.println("the [out] variable is a Java [PrintWriter]<BR><BR>"); out.println("request.getmethod(): "+ request.getmethod()); out.println("<br> request.getservername(): "+ request.getservername()); out.println("<br> user input: "+ UserInputStr); %> <BR><BR> Output to the user using <B>JSP Expression:</B><BR><BR> request.getmethod() by <B>JSP Expression</B> <%= request.getmethod() %> <BR> request.getservername() by <B>JSP Expression</B> <%= request.getservername() %> <BR>user input : <%= UserInputStr %> <% } %> <BR> <FORM METHOD="GET" ACTION="Lecture_5_page_XXXX.jsp" > <INPUT NAME="InBox_1"> <INPUT TYPE = "submit" VALUE="Submit User Input"/> </FORM> </BODY></HTML> 7

8 Web サーバ JSP とは Request Web クライアント サーブレット コンテナ JSP ページ 4 Internet スクリプトを実行する Response HTML テキスト Page.jsp スタチックな WWW コンテンツおよびダイナミックな WWW コンテンツのスクリプト スタチックな WWW コンテンツおよびダイナミックな WWW コンテンツのスクリプトの実行結果 ユーザー 8

9 JSP の実現方法 Web サーバ 自動的 Automatically! サーブレット コンテナ JSP ページ ページ名.jsp 1. スクリプトをコンパイルする a) ページ名.jsp -> ページ名.java b) ページ名.java -> ページ名.class 2. ページ名.class を実行する 9

10 JSP の実現方法.java and.class Files Lecture_5_page_XXXX.jsp Web サーバ サーブレット コンテナ JSP ページ ページ名.jsp.java and.class files are stored in system folder _pages/ 1. スクリプトをコンパイルする a) ページ名.jsp -> ページ名.java b) ページ名.java -> ページ名.class 2. ページ名.class を実行する 10

11 JSP の実現方法.java and.class Files Lecture_5_page_XXXX.jsp package _teaching._programming _1g131000; import oracle.jsp.runtime.*; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; import java.io.*; import java.util.*; import java.lang.reflect.*; import java.beans.*; public class _Lecture 5 page XXXX extends oracle.jsp.runtime.httpjsp { public final String _globalsclassname = null; // ** Begin Declarations // ** End Declarations public void _jspservice(httpservletrequest request, HttpServletResponse response) throws IOExcepti ServletException { response.setcontenttype( "text/html; charset=shift_jis"); /* set up the intrinsic variables using the pagecontext goober: ** session = HttpSession ** application = ServletContext ** out = JspWriter ** page = this ** config = ServletConfig ** all session/app beans declared in globals.jsa */ JspFactory factory = JspFactory.getDefaultFactory(); PageContext pagecontext = factory.getpagecontext( this, request, response, null, true, JspWriter.DEFAULT_BUFFER, true); // Note: this is not emitted if the session directive == false HttpSession session = pagecontext.getsession(); if (pagecontext.getattribute(oraclejspruntime.jsp_request_redirected, P C t t REQUEST SCOPE)! ll) { 11

12 Web サーバ サーブレット コンテナ JSP ページ スクリプトを実行する Page.jsp スタチックな WWW コンテンツおよびダイナミックな WWW コンテンツのスクリプト JSPとは Lecture_5_page_XXXX.jsp <HTML> <HEAD> <TITLE> Programming Java 3, Lecture 5, ID=XXXX </TITLE> page contenttype= "text/html; charset=shift_jis" %> </HEAD> <BODY> include file = "logo.htm" %> <BR> <% String UserInputStr = request.getparameter("inbox_1"); if (UserInputStr!= null) { UserInputStr = new String(UserInputStr.getBytes("ISO "), "SHIFT_JIS"); out.println("output to the user using <B>out.println</B>:<BR>"); out.println("the [out] variable is a Java [PrintWriter]<BR><BR>"); out.println("request.getmethod(): "+ request.getmethod()); out.println("<br> request.getservername(): "+ request.getservername()); out.println("<br> user input: "+ UserInputStr); %> <BR><BR> Output to the user using <B>JSP Expression:</B><BR><BR> request.getmethod() by <B>JSP Expression</B> <%= request.getmethod() %> <BR> request.getservername() by <B>JSP Expression</B> <%= request.getservername() %> <BR>user input : <%= UserInputStr %> <% } %> <BR> <FORM METHOD="GET" ACTION="Lecture_5_page_XXXX.jsp" > <INPUT NAME="InBox_1"> <INPUT TYPE = "submit" VALUE="Submit User Input"/> </FORM> </BODY></HTML> 12

13 Web サーバ JSP とは サーバサイドスクリプト 保存されている所 Web Server 実行されている所 Web Server 実行の結果を表示されている所 Web Browser (Client) Web クライアント サーブレット コンテナ JSP ページ 4 Internet スクリプトを実行する サーバサイドスクリプト コンテンツはサーバのダイナミックな状態が関係ある時 ( 時間 ページアクセスカウンター等 ) コンテンツはデータベースのダイナミックな状態が関係ある時 ( 時間 ページアクセスカウンター等 コンテンツはユーザーインプットのダイナミックな状態が関係ある時 HTML テキスト スタチックなWWWコンテンツおよびダイナミックなWWWコンテンツのスクリプトの実行結果 ユーザー 13

14 ユーザー入力およびユーザーに出力処理 Web サーバ Web クライアント サーブレット コンテナ JSP ページ スクリプトを実行する Internet 1 HTML テキスト A) ユーザー入力処理 (Processing User s Input) B) ユーザー出力入力処理 Processing User s Output) スタチックな WWW コンテンツおよびダイナミックな WWW コンテンツのスクリプトの実行結果 ユーザー 14

15 ユーザー入力およびユーザーに出力処理 A) ユーザー入力処理 Web サーバ サーブレット コンテナ JSP ページ スクリプトを実行する Method Defined In Job Performed getrequest javax.servlet.jsp.pagecontext Returns the current request object getparameternames javax.servlet.servletrequest Returns the names of the parameters request currently contains getparametervalues javax.servlet.servletrequest Returns the values of the parameters request currently contains getparameter javax.servlet.servletrequest Returns the value of a parameter if you provide the name B) ユーザー出力処理 方法 1: JSP Expression 方法 2: out.println(stringvariable) <%= StringVariable %> out はサーブレットの PrintWriter です out.println はサーブレットの out.println です A) ユーザー入力処理 (Processing User s Input) B) ユーザー出力入力処理 Processing User s Output) 15

16 ユーザー入力およびユーザーに出力処理 ユーザ入力 A) ユーザー入力処理 Lecture_5_page_XXXX.jsp ユーザー入力 : Request String ユーザ入力の処理の結果 16

17 4 ユーザー入力およびユーザーに出力処理 Request String サーバに送る A) ユーザー入力処理 <HTML> <HEAD> <TITLE> Programming Java 3, Lecture 5, ID=XXXX </TITLE> page contenttype= "text/html; charset=shift_jis" %> </HEAD> <BODY> include file = "logo.htm" %> <BR> <% String UserInputStr = request.getparameter("inbox_1"); if (UserInputStr!= null) { ユーザー入力処理 : Request String の処理 UserInputStr = new String(UserInputStr.getBytes("ISO "), "SHIFT_JIS"); out.println("output to the user using <B>out.println</B>:<BR>"); out.println("the [out] variable is a Java [PrintWriter]<BR><BR>"); out.println("request.getmethod(): "+ request.getmethod()); out.println("<br> request.getservername(): "+ request.getservername()); out.println("<br> user input: "+ UserInputStr); %> <BR><BR> Output to the user using <B>JSP Expression:</B><BR><BR> request.getmethod() by <B>JSP Expression</B> <%= request.getmethod() %> <BR> request.getservername() by <B>JSP Expression</B> <%= request.getservername() %> <BR>user input : <%= UserInputStr %> <% } %> <BR> <FORM METHOD="GET" ACTION="Lecture_5_page_XXXX.jsp" > <INPUT NAME="InBox_1"> <INPUT TYPE = "submit" VALUE="Submit User Input"/> </FORM> </BODY></HTML> 5 6 ユーザーにのオウットプット作成 7 Static HTML text( 処理なし )

18 ユーザー入力およびユーザーに出力処理 A) ユーザー入力処理 : Request の処理 Reference: 18

19 ユーザー入力およびユーザーに出力処理 A) Request の処理 Reference: 19

20 ユーザー入力およびユーザーに出力処理 B) ユーザー出力処理 <HTML> <HEAD> <TITLE> Programming Java 3, Lecture 5, ID=XXXX </TITLE> page contenttype= "text/html; charset=shift_jis" %> </HEAD> <BODY> include file = "logo.htm" %> <BR> <% String UserInputStr = request.getparameter("inbox_1"); if (UserInputStr!= null) { UserInputStr = new String(UserInputStr.getBytes("ISO "), "SHIFT_JIS"); out.println("output to the user using <B>out.println</B>:<BR>"); out.println("the [out] variable is a Java [PrintWriter]<BR><BR>"); out.println("request.getmethod(): "+ request.getmethod()); out.println("<br> request.getservername(): "+ request.getservername()); out.println("<br> user input: "+ UserInputStr); %> <BR><BR> Output to the user using <B>JSP Expression:</B><BR><BR> request.getmethod() by <B>JSP Expression</B> <%= request.getmethod() %> <BR> request.getservername() by <B>JSP Expression</B> <%= request.getservername() %> <BR>user input : <%= UserInputStr %> <% } %> <BR> <FORM METHOD="GET" ACTION="Lecture_5_page_XXXX.jsp" > <INPUT NAME="InBox_1"> <INPUT TYPE = "submit" VALUE="Submit User Input"/> </FORM> </BODY></HTML> out.println out はサーブレットの PrintWriter です out.println はサーブレットの out.println です JSP Expression: <%= UserInputStr %> 20

21 ユーザー入力およびユーザーに出力処理 B) ユーザー出力処理 Reference: 21

22 JSP Lecture_5_page_XXXX.jsp <HTML> <HEAD> <TITLE> Programming Java 3, Lecture 5, ID=XXXX </TITLE> page contenttype= "text/html; charset=shift_jis" %> </HEAD> <BODY> include file = "logo.htm" %> <BR> <% String UserInputStr = request.getparameter("inbox_1"); if (UserInputStr!= null) { UserInputStr = new String(UserInputStr.getBytes("ISO "), "SHIFT_JIS"); out.println("output to the user using <B>out.println</B>:<BR>"); import java.io.*; out.println("the [out] variable is a Java [PrintWriter]<BR><BR>"); import javax.servlet.*; out.println("request.getmethod(): "+ request.getmethod()); import javax.servlet.http.*; out.println("<br> request.getservername(): "+ request.getservername()); out.println("<br> user input: "+ UserInputStr); %> <BR><BR> Output to the user using <B>JSP Expression:</B><BR><BR> request.getmethod() by <B>JSP Expression</B> <%= request.getmethod() %> <BR> request.getservername() by <B>JSP Expression</B> <%= request.getservername() %> <BR>user input : <%= UserInputStr %> <% } %> <BR> <FORM METHOD="GET" ACTION="Lecture_5_page_XXXX.jsp" > <INPUT NAME="InBox_1"> <INPUT TYPE = "submit" VALUE="Submit User Input"/> </FORM> </BODY></HTML> Vs. Servlets JSP: A lot of Static HTML Little data processing Servlet: Little static HTML A lot of data processing public class Lecture4_Servlet_XXXX extends HttpServlet { public void service (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setcontenttype("text/html"); Servlet Lecture4_Servlet_XXXX.java のソース //--- New : --- // Getting the form parameters: String FirstName = request.getparameter("form_firstname"); String Language = request.getparameter("form_language"); String Car = request.getparameter("form_cars"); String Lang = ""; if (request.getparameter("form_speakenglish")!=null) Lang="English"; if (request.getparameter("form_speakjapanese")!=null) Lang=Lang + " Japanese"; if (request.getparameter("form_speakfrench")!=null) Lang=Lang + " French"; // Getting the communication channel with the requesting client PrintWriter out = response.getwriter(); 22

23 演習 File Appendix_5.pdf Pages 4~8 23

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */ 演習コメントを参考にして を埋めてアプレットプログラムを実行させてみよ * SOFT 120 01 * AppletTest01.java * 文字表示 //java の applet 定義 // 文字 絵を描くのに必要な Graphics を定義 public

More information

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software For evaluation only.

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software   For evaluation only. サーブレットと Android との連携 Android からサーブレットへの GET リクエスト Android からサーブレットにリクエストを出すには スレッドを使わなければなりません 枠組みは以下のようになります Android 側 * Hello JSON package jp.ac.neec.kmt.is04.takata; import の記述 public class HelloJsonActivity

More information

Androidプログラミング 2 回目 迫紀徳

Androidプログラミング 2 回目 迫紀徳 Androidプログラミング 2 回目 迫紀徳 前回の復習もかねて BMI 計算アプリを作ってみよう! 2 3 BMI の計算方法 BMI = 体重 [kg] 身長 [m] 2 状態も表示できると GOOD 状態低体重 ( 痩せ型 ) 普通体重肥満 (1 度 ) 肥満 (2 度 ) 肥満 (3 度 ) 肥満 (4 度 ) 指標 18.5 未満 18.5 以上 25 未満 25 以上 30 未満 30

More information

API サーバの URL. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM "

API サーバの URL. <?xml version=1.0 encoding=utf-8?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM Policy Compliance PC スキャン結果の XML Policy Compliance(PC) スキャンの結果は ユーザインタフェースのスキャン履歴リストから XML 形式でダウンロードできます UI からダウンロードした XML 形式の PC スキャン結果には その他のサポートされている形式 (PDF HTML MHT および CSV) の PC スキャン結果と同じ内容が表示されます

More information

Java Enterprise Edition. Java EE Oct Dec 2016 EFREI/M1 Jacques André Augustin Page 1

Java Enterprise Edition. Java EE Oct Dec 2016 EFREI/M1 Jacques André Augustin Page 1 Java Enterprise Edition Java EE Oct Dec 2016 EFREI/M1 Jacques André Augustin Page 1 Java Beans Java EE Oct Dec 2016 EFREI/M1 Jacques André Augustin Page 2 Java Bean POJO class : private Attributes public

More information

J の Lab システムの舞台裏 - パワーポイントはいらない -

J の Lab システムの舞台裏 - パワーポイントはいらない - JAPLA 研究会資料 2011/6/25 J の Lab システムの舞台裏 - パワーポイントはいらない - 西川利男 学会の発表などでは 私は J の Lab を活用している 多くの人が使っているパワーポイントなぞ使う気にはならない J の Lab システムは会場の大きなスクリーンで説明文書が出来ることはもちろんだが システム自身が J の上で動いていることから J のプログラムが即実行出来て

More information

Java Server Pages JSP

Java Server Pages JSP Java Server Pages JSP Agenda Introduction JSP Architecture Scripting Elements Directives Implicit Objects 2 A way to create dynamic web pages Introduction Separates the graphical design from the dynamic

More information

Yamaha Steinberg USB Driver V for Mac Release Notes

Yamaha Steinberg USB Driver V for Mac Release Notes Yamaha Steinberg USB Driver V1.10.2 for Mac Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

JavaServer Pages (JSP)

JavaServer Pages (JSP) JavaServer Pages (JSP) The Context The Presentation Layer of a Web App the graphical (web) user interface frequent design changes usually, dynamically generated HTML pages Should we use servlets? No difficult

More information

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する 2018/03/26 10:04 - Tamura Shinji ステータス : 新規開始日 : 2018/03/26 優先度 : 通常期日 : 担当者 : 進捗率 : 0% カテゴリ : 予定工数 : 0.00 時間 対象バージョン : 作業時間 : 0.00 時間

More information

Methods to Detect Malicious MS Document File using File Structure Inspection

Methods to Detect Malicious MS Document File using File Structure Inspection MS 1,a) 2,b) 2 MS Rich Text Compound File Binary MS MS MS 98.4% MS MS Methods to Detect Malicious MS Document File using File Structure Inspection Abstract: Today, the number of targeted attacks is increasing,

More information

サンプル. NI TestStand TM I: Introduction Course Manual

サンプル. NI TestStand TM I: Introduction Course Manual NI TestStand TM I: Introduction Course Manual Course Software Version 4.1 February 2009 Edition Part Number 372771A-01 NI TestStand I: Introduction Course Manual Copyright 2009 National Instruments Corporation.

More information

Infragistics ASP.NET リリースノート

Infragistics ASP.NET リリースノート 2015.1 リリースノート AJAX は パフォーマンスに注力して設計されたグリッド 快適な UX に不可欠なツリー タブ メニューなど ASP. NET AJAX に準拠した高パフォーマンスな Web Forms アプリケーションを作成するツールセットです インストール ダウンロード 2015.1 サービスリリースダウンロード リリースノート コンポーネント カテゴリ 説明 ExcelEngine

More information

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic 構造体 構造体のサイズ Marshal.SizeOf メソッド 整数型等型のサイズが定義されて居る構造体の場合 Marshal.SizeOf メソッドを使う事に依り型のサイズ ( バイト数 ) を取得する事が出来る 引数に値やオブジェクトを直接指定するか typeof や GetType で取得した型情報を渡す事に依り 其の型のサイズを取得する事が出来る 下記のプログラムを実行する事に依り Marshal.SizeOf

More information

Servlets1. What are Servlets? Where are they? Their job. Servlet container. Only Http?

Servlets1. What are Servlets? Where are they? Their job. Servlet container. Only Http? What are Servlets? Servlets1 Fatemeh Abbasinejad abbasine@cs.ucdavis.edu A program that runs on a web server acting as middle layer between requests coming from a web browser and databases or applications

More information

JASCO-HPLC Operating Manual. (Analytical HPLC)

JASCO-HPLC Operating Manual. (Analytical HPLC) JASCO-HPLC Operating Manual (Analytical HPLC) Index A) Turning on Equipment and Starting ChromNav... 3 B) For Manual Measurement... 6 (1) Making Control Method... 7 (2) Preparation for Measurement... 9

More information

Introduction to Information and Communication Technology (a)

Introduction to Information and Communication Technology (a) Introduction to Information and Communication Technology (a) 6 th week: 1.5 Information security and management Kazumasa Yamamoto Dept. Computer Science & Engineering Introduction to ICT(a) 6th week 1

More information

楽天株式会社楽天技術研究所 Autumn The Seasar Foundation and the others all rights reserved.

楽天株式会社楽天技術研究所 Autumn The Seasar Foundation and the others all rights reserved. 2008 Autumn Seasar の中の中 楽天株式会社楽天技術研究所 西澤無我 1 Seasar の中の中 Javassist (Java バイトコード変換器 ) の説明 S2Container ( 特に S2AOP) は静的に 動的にコンポーネントを拡張可能 実行時に Java バイトコードを生成 編集 Javassist を利用 component interceptor1 interceptor2

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. SC-02L の SAR / About SAR of SC-02L ( 本語 ) この機種 SC-02L の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライ ンに適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Installation Guide - 日本語 PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Software Version 2.x 2015 年 4 月 富士通株式会社 1 著作権および商標 Copyright 2015 FUJITSU LIMITED 使用されているハードウェア名とソフトウェア名は 各メーカーの商標です

More information

CSc31800: Internet Programming, CS-CCNY, Spring 2004 Jinzhong Niu May 9, JSPs 1

CSc31800: Internet Programming, CS-CCNY, Spring 2004 Jinzhong Niu May 9, JSPs 1 CSc31800: Internet Programming, CS-CCNY, Spring 2004 Jinzhong Niu May 9, 2004 JSPs 1 As we know, servlets, replacing the traditional CGI technology, can do computation and generate dynamic contents during

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. Z-01K の SAR / About SAR of Z-01K ( 本語 ) この機種 Z-01K の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライン に適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

Lecture 4 Branch & cut algorithm

Lecture 4 Branch & cut algorithm Lecture 4 Branch & cut algorithm 1.Basic of branch & bound 2.Branch & bound algorithm 3.Implicit enumeration method 4.B&B for mixed integer program 5.Cutting plane method 6.Branch & cut algorithm Slide

More information

MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content

MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content Master Thesis MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content Supervisor Professor Katsumi TANAKA Department of Social Informatics Graduate School of Informatics Kyoto University

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 3 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411 1 Review:

More information

Web 成績登録システム利用の手引き ( 改訂版 )

Web 成績登録システム利用の手引き ( 改訂版 ) Web 成績登録システム利用の手引き ( 改訂版 ) Manual for the Online Entry of Grades 大阪国際大学 大阪国際大学短期大学部 Revised on July 4 th, 2011 Outline of Procedures for the Web Entry of Grades 1 Go to the OIU web page at http://www.oiu.ac.jp/

More information

A.1 JSP A.2 JSP JSP JSP. MyDate.jsp page contenttype="text/html; charset=windows-31j" import="java.util.calendar" %>

A.1 JSP A.2 JSP JSP JSP. MyDate.jsp page contenttype=text/html; charset=windows-31j import=java.util.calendar %> A JSP A.1 JSP Servlet Java HTML JSP HTML Java ( HTML JSP ) JSP Servlet Servlet HTML JSP MyDate.jsp

More information

Rechargeable LED Work Light

Rechargeable LED Work Light Rechargeable LED Work Light 充電式 LED 作業灯 Model:SWL-150R1 Using LED:LG innotek SMD, HI-POWER(150mA 15 position) Color Temperature:5,700 kelvin Using Battery:LG chemical Li-ion Battery(2,600mA 1set) Brightness

More information

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 今日の予定 このミステリー (?) の中でメイントリックに使われました! 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 Some nets are available at http://www.jaist.ac.jp/~uehara/etc/origami/nets/index-e.html

More information

Online Meetings with Zoom

Online Meetings with Zoom Online Meetings with Zoom Electronic Applications の下の部分に Zoom への入り口 What is Zoom? This Web Conferencing service is offered free of charge to eligible officers of technical committees, subcommittees, working

More information

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより Googleの強みは 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング 西尾 信彦 nishio@cs.ritsumei.ac.jp 立命館大学 情報理工学部 Cloud Computing 全地球規模で構成された圧倒的なPCクラスタ 部分的な機能不全を補う機能 あらゆる種類の情報へのサービスの提供 Web上の 全 情報 地図情報 (実世界情報) どのように利用されているかを機械学習

More information

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem. Imports MySql.Data.MySqlClient Imports System.IO Public Class FrmMst Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.Click

More information

IP Network Technology

IP Network Technology IP Network Technology IP Internet Procol QoS Quality of Service RPR Resilient Packet Ring FLASHWAVE2700 Abstract The Internet procol (IP) has made it possible to drastically broaden the bandwidth of networks

More information

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix 1 2017 Citrix Cloud Connector 徹底解説 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア 小宮山 哲司 (Satoshi Komiyama) 2 2017 Citrix このセッションのもくじ Cloud Connector 徹底解説 Cloud Connector

More information

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M.

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M. フラクタル 1 ( ジュリア集合 ) PictureBox 1 TextBox 1 TextBox 2 解説 : ジュリア集合 ( 自己平方フラクタル ) TextBox 3 複素平面 (= PictureBox1 ) 上の点 ( に対して, x, y) 初期値 ( 複素数 ) z x iy を決める. 0 k 1 z k 1 f ( z) z 2 k a 写像 ( 複素関数 ) (a : 複素定数

More information

JR SHIKOKU_Wi Fi Connection Guide

JR SHIKOKU_Wi Fi Connection Guide JR SHIKOKU_Wi Fi Connection Guide Ver1.0 June, 2018 Procedure to connect JR SHIKOKU_Station_Wi Fi Wireless LAN info SSID :JR SHIKOKU_Station_Wi Fi IP Address: Acquired automatically DNS Address:Acquired

More information

Quick Install Guide. Adaptec SCSI RAID 2120S Controller

Quick Install Guide. Adaptec SCSI RAID 2120S Controller Quick Install Guide Adaptec SCSI RAID 2120S Controller The Adaptec SCSI Raid (ASR) 2120S Controller is supported on the HP Workstation xw series with Microsoft Windows 2000 and Windows XP operating systems

More information

WD/CD/DIS/FDIS stage

WD/CD/DIS/FDIS stage ISO #### All rights reserved ISO TC ###/SC ##/WG # Secretariat: XXXX テンプレート中 解説に相当する部分の和訳を黄色ボックスにて示します 一般財団法人日本規格協会 Title (Introductory element Main element Part #: Part title) WD/CD/DIS/FDIS stage Warning

More information

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 日本オラクル株式会社山崎由章 / MySQL Senior Sales Consultant, Asia Pacific and Japan 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. New!! 外部キー

More information

MathWorks Products and Prices Japan September 2016

MathWorks Products and Prices Japan September 2016 MATLAB Product Family page 1 of 5 MATLAB 1 295,000 1,180,000 Parallel Computing Toolbox 145,000 580,000 Math and Optimization Symbolic Math Toolbox 145,000 580,000 Partial Differential Equation Toolbox

More information

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること 目次 はじめにはじめに表記法前提条件使用するコンポーネント設定ネットワーク図設定 RADIUS プロファイル確認トラブルシューティングシングルサインオン SSD 2.5.1 機能とは何か SSG および SSD を設定する前に何を認知する必要がありますか PPPoA セッションが始められたが 後 SSD ログオンが設定される前にことをしますか

More information

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ]

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ] Agilent IO Libraries Suite 16.3/16.2 簡易取扱説明書 この簡易取扱説明書は Agilent IO Libraries Suite 16.3 / 16.2 ( 以後 IO Lib. ) の簡易説明書です 詳細につきましては各 Help や下記の弊社 web をご参照ください [ IO Libraries Suite 最新版 ] http://www.agilent.com/find/iolib

More information

Servlets. An extension of a web server runs inside a servlet container

Servlets. An extension of a web server runs inside a servlet container Servlets What is a servlet? An extension of a web server runs inside a servlet container A Java class derived from the HttpServlet class A controller in webapplications captures requests can forward requests

More information

The Secret Life of Components

The Secret Life of Components Practical WebObjects Chapter 6 (Page 159-185): The Secret Life of Components WR WR at Csus4.net http://www.csus4.net/wr/ 目次詳細 The Hypertext Transfer Protocol Spying on HTTP The Request-Response Loop, Briefly

More information

PSLT Adobe Typekit Service (2016v1.1)

PSLT Adobe Typekit Service (2016v1.1) 1. Typekit Service. 1.1 Desktop Publishing. Page 1 of 2 (A) Customer may only use Typekit Desktop (including any Distributed Code that Adobe permits to be synced or otherwise made available to Customer

More information

Book Template. GGerry.

Book Template. GGerry. by GGerry GGerry@users.noreply.github.com 2017 10 19 DISCLAIMER This document and the information contained herein is provided on an As Is basis and the author disclaims all warranties, express or implied,

More information

Certificate of Accreditation

Certificate of Accreditation PERRY JOHNSON LABORATORY ACCREDITATION, INC. Certificate of Accreditation Perry Johnson Laboratory Accreditation, Inc. has assessed the Laboratory of: System One Co., Ltd. 1208-1 Otai, Saku-shi, Nagano

More information

Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case

Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case Nomura Research Institute, Ltd. Data Analyst Chie Mitsui Contents for today

More information

Video Annotation and Retrieval Using Vague Shot Intervals

Video Annotation and Retrieval Using Vague Shot Intervals Master Thesis Video Annotation and Retrieval Using Vague Shot Intervals Supervisor Professor Katsumi Tanaka Department of Social Informatics Graduate School of Informatics Kyoto University Naoki FUKINO

More information

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K.

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K. Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS Ken ichiro Hashimoto Brocade Communications Systems, K.K. September, 14 th, 2009 BGP Malformed AS_PATH そもそもうちは as0 を出せるのか? NetIron MLX-4 Router(config-bgp)#router

More information

Relaxed Consistency models and software distributed memory. Computer Architecture Textbook pp.79-83

Relaxed Consistency models and software distributed memory. Computer Architecture Textbook pp.79-83 Relaxed Consistency models and software distributed memory Computer Architecture Textbook pp.79-83 What is the consistency model? Coherence vs. Consistency (again) Coherence and consistency are complementary:

More information

Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0

Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0 Copyright 2004 NTT DATA Corporation Prepared for JSR-224 F2F meeting Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0 March 11th, 2004 Toshiyuki KIMURA R&D Headquarters NTT DATA Corporation

More information

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment BABr11.5 for Linux のインストール 2007/12/21 ここでは BrightStore ARCserve Backup 11.5 for Linux のインストール手順を説明します 前提条件 1) HTTP サーバが動作している必要があります YaST > Networks Service > HTTP Server を開き HTTP サービスが動作しているか確認してください

More information

DSK8AD1DA. 8ch A/D & 1ch D/A for DSK/EVM.

DSK8AD1DA. 8ch A/D & 1ch D/A for DSK/EVM. DSK8AD1DA 8ch A/D & 1ch D/A for DSK/EVM http://www.cepstrum.co.jp/ Rev. date remarks ------------------------------------------------------------------------ 1.1 2002.11.27 1st official release 1.2 2003.10.27

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.9.11 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Computer Programming I (Advanced)

Computer Programming I (Advanced) Computer Programming I (Advanced) 7 th week Kazumasa Yamamoto Dept. Comp. Sci. & Eng. Computer Programming I (Adv.) 7th week 1 Exercise of last week 1. Sorting by bubble sort Compare the bubble sort with

More information

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Chapter 3 Visualization Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Project Representative Fumiaki Araki Earth Simulator Center, Japan Agency for Marine-Earth Science and

More information

ServletConfig Interface

ServletConfig Interface ServletConfig Interface Author : Rajat Categories : Advance Java An object of ServletConfig is created by the web container for each servlet. This object can be used to get configuration information from

More information

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11 Installation Guide FOR English 2 About this guide... 2 Notations used in this document... 2 Symbols... 2 Before installing MTCE... 2 Notice... 2 Recommended computer specifications... 3 Installing MTCE...

More information

Co-StandbyServer. AAdvanced. リリース 5.1 Microsoft Windows 版 ユーザーズ ガイド

Co-StandbyServer. AAdvanced. リリース 5.1 Microsoft Windows 版 ユーザーズ ガイド Co-StandbyServer AAdvanced リリース 5.1 Microsoft Windows 版 2003, LEGATO Systems, Inc. All rights reserved. This product may be covered by one or more of the following patents: U.S. 5,359,713; 5,519,853; 5,649,152;

More information

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan IRS16: 4 byte ASN Version: 1.0 Date: April 22, 2008 Cisco Systems hkanemat@cisco.com 1 目次 4 byte ASN の対応状況 運用での変更点 2 4 byte ASN の対応状況 3 4 byte ASN の対応状況 IOS XR 3.4 IOS: 12.0S 12.2SR 12.2SB 12.2SX 12.5T

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Java Server Pages (JSP) Dr. Basem Suleiman Service Oriented Computing Group, CSE, UNSW Australia Semester 1, 2016, Week 3 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2442

More information

~ ソフトウエア認証への取り組みと課題 ~

~ ソフトウエア認証への取り組みと課題 ~ 第 1 回航空機装備品認証技術オープンフォーラム ~ ソフトウエア認証への取り組みと課題 ~ 2019 年 3 月 14 日 The information in this document is the property of Sumitomo Precision Products Co.,LTD.(SPP) and may not be duplicated, or disclosed to any

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.10.4 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

AMSC Co.Ltd. Development Section

AMSC Co.Ltd. Development Section 2001/Oct/09 th Rev.0.1 2001/Oct/18 th Rev.0.2 2001/Dec/28 th Rev.0.3 2002/Feb/28 th Rev.0.4 2002/Mar/22 th Rev.0.5 AMSC Co.Ltd. Development Section 1, 64ch AMT-VME Moduleは 1ns/bit 以下での測定が可能な精密時間測定用モジュールである

More information

Stateless -Session Bean

Stateless -Session Bean Stateless -Session Bean Prepared by: A.Saleem Raja MCA.,M.Phil.,(M.Tech) Lecturer/MCA Chettinad College of Engineering and Technology-Karur E-Mail: asaleemrajasec@gmail.com Creating an Enterprise Application

More information

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original.

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original. 暗い Lena トーンマッピング とは? tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) / 2 original 元の Lena 明るい Lena tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) tone mapped 画素値 ( ) output

More information

Java Server Pages. Copyright , Xiaoping Jia. 7-01/54

Java Server Pages. Copyright , Xiaoping Jia. 7-01/54 Java Server Pages What is Java Server Pages (JSP)? HTML or XML pages with embedded Java code to generate dynamic contents. a text-based document that describes how to process a request and to generate

More information

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu Centralized (Indirect) switching networks Computer Architecture AMANO, Hideharu Textbook pp.92~130 Centralized interconnection networks Symmetric: MIN (Multistage Interconnection Networks) Each node is

More information

Basic Principles of JSPs

Basic Principles of JSPs 5 IN THIS CHAPTER What Is a JSP? Deploying a JSP in Tomcat Elements of a JSP Page Chapter 4, Basic Principles of Servlets, introduced you to simple Web applications using servlets. Although very useful

More information

SteelEye Protection Suite for Linux

SteelEye Protection Suite for Linux SteelEye Protection Suite for Linux Postfix Recovery Kit v8.2.1 管理ガイド 2014 年 3 月 SteelEye and LifeKeeper are registered trademarks. Adaptec is a trademark of Adaptec, Inc. Adobe Acrobat is a registered

More information

Verify99. Axis Systems

Verify99. Axis Systems Axis Systems Axis Systems Mission Axis Systems, Inc. is a technology leader in the logic design verification market. Founded in 1996, the company offers breakthrough technologies and high-speed simulation

More information

Appliance Edition 入門ガイド

Appliance Edition 入門ガイド [Type the document title] 1.0 2013 年 7 月 3725-69903-001/A Polycom RealPresence Capture Server - Appliance Edition 入門ガイド Polycom Document Title 1 商標情報 POLYCOM および Polycom 社製品に関連する製品名およびマークは Polycom, Inc.

More information

JAVA SERVLET. Server-side Programming INTRODUCTION

JAVA SERVLET. Server-side Programming INTRODUCTION JAVA SERVLET Server-side Programming INTRODUCTION 1 AGENDA Introduction Java Servlet Web/Application Server Servlet Life Cycle Web Application Life Cycle Servlet API Writing Servlet Program Summary 2 INTRODUCTION

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.   Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 642-813 日本語版 Title : Implementing Cisco IP Switched Networks Vendor : Cisco Version : DEMO 1 / 12 Get Latest & Valid

More information

AJP. CHAPTER 5: SERVLET -20 marks

AJP. CHAPTER 5: SERVLET -20 marks 1) Draw and explain the life cycle of servlet. (Explanation 3 Marks, Diagram -1 Marks) AJP CHAPTER 5: SERVLET -20 marks Ans : Three methods are central to the life cycle of a servlet. These are init( ),

More information

Servlet Basics. Agenda

Servlet Basics. Agenda Servlet Basics 1 Agenda The basic structure of servlets A simple servlet that generates plain text A servlet that generates HTML Servlets and packages Some utilities that help build HTML The servlet life

More information

Session 8. JavaBeans. Reading & Reference. Reading. Reference. Session 8 Java Beans. 2/27/2013 Robert Kelly, Head First Chapter 3 (MVC)

Session 8. JavaBeans. Reading & Reference. Reading. Reference. Session 8 Java Beans. 2/27/2013 Robert Kelly, Head First Chapter 3 (MVC) Session 8 JavaBeans 1 Reading Reading & Reference Head First Chapter 3 (MVC) Reference JavaBeans Tutorialdocs.oracle.com/javase/tutorial/javabeans/ 2 2/27/2013 1 Lecture Objectives Understand how the Model/View/Controller

More information

JavaServer Pages. Juan Cruz Kevin Hessels Ian Moon

JavaServer Pages. Juan Cruz Kevin Hessels Ian Moon Page 1 of 14 JavaServer Pages Table of Contents 1. Introduction What is JSP? Alternative Solutions Why Use JSP? 2. JSP Process Request Compilation Example 3. Object Instantiation and Scope Scope Synchronization

More information

この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです

この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです 目次 概要前提条件要件使用するコンポーネント設定ネットワーク図設定ブラ設定 Windows マシン構成および設定確認トラブルシューティング関連情報 概要 この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです

More information

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 国立大学法人名古屋大学 National University Corporation Nagoya University この振込依頼書は 本学が貴社にお支払いする代金をご指定の金融機関口座に銀行振込するためのものです 新規に登録される場合 あるいは内容を一部変更される場合はその都度 この申出書を提出していただくよう

More information

Web Billing User Guide

Web Billing User Guide Web Billing User Guide ( Smart Phone ) This guide describes how to use Web Billing service provided by NTT Finance. Your display on the screen may vary depending on the payment methods you have. Contents

More information

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A8)

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A8) アルゴリズムの設計と解析 教授 : 黄潤和 SA: (W4022) rhuang@hosei.ac.jp 広野史明 (A4/A8) fumiaki.hirono.5k@stu.hosei.ac.jp Contents (L6 Search trees) Searching problems AVL tree 2-3-4 trees Insertion (review) Deletion 2 3 Insertion

More information

UML. A Model Trasformation Environment for Embedded Control Software Design with Simulink Models and UML Models

UML. A Model Trasformation Environment for Embedded Control Software Design with Simulink Models and UML Models Simulink UML 1,a) 1, 1 1 1,b) 1,c) 2012 3 5, 2012 9 10 Simulink UML 2 MATLAB/Simulink Simulink UML Simulink UML UML UML Simulink Simulink MATLAB/Simulink UML A Model Trasformation Environment for Embedded

More information

ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ

ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ Android ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ Dual プロセッサ構造による 低消費電力 & 高性能 の両立 データ処理 (ARM11) と 音声 動画像の圧縮 伸張処理 (DSP あるいは専用 HW) が同時実行できる 各々の処理の切り替え等によるオーバーヘッドがない 動作周波数を低く抑えられるため 低消費電力プロセスの適用が可能となる 高度な低消費電力化の仕組み

More information

PRODUCT DESCRIPTIONS AND METRICS

PRODUCT DESCRIPTIONS AND METRICS PRODUCT DESCRIPTIONS AND METRICS 1. Multiple-User Access. 1.1 If On-Premise Software licensed on a per-user basis is installed on a Computer accessible by more than one User, then the total number of Users

More information

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 2 ネットワークへのアクセス ネットワークへの接続 TCP:Socket 利用 UDP:DatagramSocket 利用 URL へのアクセス 3 application String Object reader / writer char stream byte device 4 階層化された IO の利点

More information

グラフを表すデータ構造 JAVA での実装

グラフを表すデータ構造 JAVA での実装 グラフを表すデータ構造 JAVA での実装 グラフの構造を記述するクラス パッケージgraphLib graphlib.graph グラフ全体 graphlib.vertex 頂点 頂点を始点とする弧 頂点を2 次元面に表示するための座標 graphlib.arc 弧の始点と終点 クラスの関係 グラフ 弧一覧 弧 弧 頂点 弧 頂点一覧 頂点 頂点 写像 + 頂点 写像 頂点 写像 δ + GRAPH

More information

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Peering 101 August 2017 TPF Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Who is Walt Wollny? Hurricane Electric AS6939 3 years Director Interconnection Strategy supporting the

More information

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68 Synchronization with shared memory AMANO, Hideharu Textbook pp.60-68 Fork-join: Starting and finishing parallel processes fork Usually, these processes (threads) can share variables fork join Fork/Join

More information

Advanced Internet Technology Lab # 4 Servlets

Advanced Internet Technology Lab # 4 Servlets Faculty of Engineering Computer Engineering Department Islamic University of Gaza 2011 Advanced Internet Technology Lab # 4 Servlets Eng. Doaa Abu Jabal Advanced Internet Technology Lab # 4 Servlets Objective:

More information

Snoop cache. AMANO, Hideharu, Keio University Textbook pp.40-60

Snoop cache. AMANO, Hideharu, Keio University Textbook pp.40-60 cache AMANO, Hideharu, Keio University hunga@am.ics.keio.ac.jp Textbook pp.40-60 memory A small high speed memory for storing frequently accessed data/instructions. Essential for recent microprocessors.

More information

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 )

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち この雑誌に載ってます! 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) このミステリー (?) の中でメイントリックに使われました! 主な文献 Dawei Xu, Takashi

More information

Servlets and JSP (Java Server Pages)

Servlets and JSP (Java Server Pages) Servlets and JSP (Java Server Pages) XML HTTP CGI Web usability Last Week Nan Niu (nn@cs.toronto.edu) CSC309 -- Fall 2008 2 Servlets Generic Java2EE API for invoking and connecting to mini-servers (lightweight,

More information

製 品 ガ イ ド NetShield for NetWare V E R S I O N 4. 6

製 品 ガ イ ド NetShield for NetWare V E R S I O N 4. 6 製品ガイド NetShield for NetWare VERSION 4.6 COPYRIGHT 2001 Networks Associates Technology, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~ LESSON GOAL: Can read about movies. 映画に関する文章を読めるようになろう Choose the word to match the underlined word. 下線の単語から考えて どんな映画かを言いましょう 1. The (thriller movie, sports video) I watched yesterday was scary. 2. My

More information

JCCT U.S.-China Cloud Computing Seminar

JCCT U.S.-China Cloud Computing Seminar JCCT U.S.-China Cloud Computing Seminar Organized by the JCCT Information Industry Working Group (IIWG) 概要 2012 年 5 月 3 日 JEITA 北京事務所陳明曦 中国工業信息化部 (MIIT) と米国商務省 (U.S Department of Commerce) が共同主催する米中クラウドコンピューティングフォーラムは

More information

BraindumpQuiz. Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more!

BraindumpQuiz.   Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more! BraindumpQuiz http://www.braindumpquiz.com/ Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more! Exam : 1Z1-804 日本語 (JPN) Title : Java SE 7 Programmer II Exam Vendor : Oracle Version

More information

和英対訳版. IEC Standard Template のユーザーガイド 備考 : 英語原文掲載 URL ( 一財 ) 日本規格協会

和英対訳版. IEC Standard Template のユーザーガイド 備考 : 英語原文掲載 URL ( 一財 ) 日本規格協会 IEC Standard Template のユーザーガイド 和英対訳版 ( 一財 ) 日本規格協会 備考 : 英語原文掲載 URL http://www.iec.ch/standardsdev/resources/draftingpublications/layout_formatting/iec_t emplate/ IEC:2014 3 CONTENTS 1 Introduction... 5

More information