NewsML解説とNewsML-Toolkit紹介

Size: px
Start display at page:

Download "NewsML解説とNewsML-Toolkit紹介"

Transcription

1 NewsML NewsML-Toolkit Toolkit

2

3 NewsML NewsML NewsML (ver2.0 ) API LLT (Low Level Toolkit) ALT(Application Level Toolkit) NewsML LLT

4 NewsML API DOM(Document Object Model) API(Application Program Interface) DOM NewsML NewsML Java Java 5 ver 0.1alpha : Reuters ver 1.0 : SourceForge ver 1.1beta : SourceForge ver 1.1 : SourceForge ALT ver 1.0 beta: : SourceForge ver 2.0 : 4 21 SourceForge ALT ver 1.0 final : 3 14 SourceForge

5 NewsML-DOM DOM NewsML NewsML Xerces ( NewsML DefaultVocabulary ver1.1 Ver1.1 DateAndTime FormalName DefaultVocabularyFor etc... DOM NewsML-Explorer NewsML-Toolkit

6 Reuters ( NewsML WAVO ( XMLNews David Megginson ( SAX NITF XMLNews W3C "XML Information Set Working Group" SourceForge toolkit.sourceforge.net/

7 for NewsML-Toolkit Ver 1.0 JDK1.2 NewsML-Toolkit ver1.0 ( DOM Level2 XML (Xerces( Xerces( for NewsML-Toolkit Ver Ver 2.0 JDK1.2 NewsML-Toolkit ver1.1 ( DOM Level2 XML (Xerces( Xerces( SAXPath ( event-based XPath parsing Jaxen ( - Java XPath Engine based on SAXPath Gnu Regular Expression library ( for unittest: JUnit ( for building: Ant ( /ant/)

8 CLASSPATH Jar Jar Ver 1.0 xerces.jar newsml-toolkit.jar Ver 1.1 or Ver 2.0 xerces.jar newsml-toolkit.jar toolkit.jar, newsml-conformance.jar conformance.jar, newsml- normalize.jar (only newsml-toolkit.jar with ver2.0) saxpath.jar jaxen-full.jar ( don t t use Final Version! not work... ) junit.jar gnu-regexp regexp jar ant.jar

9 (DOM) File file = new File( kiji-sample.xml ); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newdocumentbuilder(); Document doc = builder.parse( file ); (NTK) DOMNewsMLFactory factory = new DOMNewsMLFactory(); NewsML newsml = factory.createnewsml( kiji-sample.xml );

10 NewsML <NewsComponent Duid="NC0001" xml:lang="ja-jp" Essential="no" EquivalentsList="no"> <Comment> </Comment> <NewsLines> <HeadLine> </HeadLine> <SubHeadLine> </SubHeadLine> <ByLine> </ByLine> <DateLine> </DateLine> <CreditLine>Pressnet</CreditLine> <CopyrightLine xml:lang="en"> NSK all rights reserved.</copyrightline> <RightsLine> </RightsLine> <SeriesLine> </SeriesLine> <KeywordLine> </KeywordLine> <KeywordLine> </KeywordLine> <NewsLine> <NewsLineType FormalName="Karimidashi" /> <NewsLineText> </NewsLineText> </NewsLine> </NewsLines>

11 <Metadata> <MetadataType FormalName="NskAreaInformation"/> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="KOR"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="CMR"/> </Property> <Property FormalName="NskOriginatedArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> <Property FormalName="NskLocation" Value=" "/> </Property> </Metadata> NewsML / NewsItem / NewsComponent / Metadata Metadata

12 DOM NTK // NewsMLSession session = NodeList lolist = newsml.getsession(); doc.getelementsbytagname("property"); // Property XPath // Property // Property // // BaseNode[] basenodes = for ( int i = 0 ; i < lolist.getlength() ; i++ ) { session.getnodesbyxpath( (BaseNode)aoNew Element loelm = (Element)( lolist.item(i) ); sml, "//Property" ); System.out.println( "Property[" + i + "]: FormalName = " + loelm.getattribute("formalname") + " : Value = " + loelm.getattribute("value") ); } Property[0]: FormalName = NskRelevantArea : Value = Property[1]: FormalName = NskCountry : Value = JPN Property[2]: FormalName = NskJpnAreaCode : Value = Property[3]: FormalName = NskRelevantArea : Value = Property[4]: FormalName = NskCountry : Value = KOR Property[5]: FormalName = NskRelevantArea : Value = Property[6]: FormalName = NskCountry : Value = CMR Property[7]: FormalName = NskOriginatedArea : Value = Property[8]: FormalName = NskCountry : Value = JPN Property[9]: FormalName = NskJpnAreaCode : Value = Property[10]: FormalName = NskLocation : Value = // Property Property prop = null; for ( int i = 0 ; i < basenodes.length; i++ ) { prop = (Property)baseNodes[i]; System.out.println("Property[" + i + "]: FormalName = " + prop.getname() + " : Value = " + prop.getvalue() ); }

13 BaseNode basenode = XPath (ver1.1 ) session.getnodebyxpath( newsml, "//Property[@FormalName= "NskOriginatedArea "]/Property[@FormalNa me= "NskJpnAreaCode "] ); <Metadata> <MetadataType FormalName="NskAreaInformation"/> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="KOR"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="CMR"/> </Property> <Property FormalName="NskOriginatedArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> <Property FormalName="NskLocation" Value=" "/> </Property> </Metadata> Property

14 NewsML CatalogTest NewsML (ver1.0) ContentItemTest run(...) DateTimeTest BaseNode DefaultVocabularyForTest DefaultVocabularyFor DateAndTime EuidTest FormalNameTest NewsComponentTest NewsIdentifierTest NewsItemTest NewsLineTest ISO PatternTest PropertyTest RefTest ResourceTest NewsIdentifier PublicIdentifier NewsItemId NewsComponent Role / BasisForChoice RevisionIdTest RevisionStatusTest TopicSetTest TopicUseTest XMLLangTest NewsMLTestManager

15 XSLT NewsML IPTC XML NewsML

16 GNU Lesser General Public License DOM DOM NewsML NewsML HeadLineGroup, SubjectCodeItem NewsML

17 DOM ver1.1 ver2.0 DTD NewsMLv1.0.dtd DTD

18 NewsML-Toolkit

19

20 / NewsML XML Web NewsML Web WG NewsML NewsML- WG Web - WG

21 NewsML Java Java NewsML-WG WG NewsML

22 NewsService <NewsEnvelope> <SentFrom> <Party Scheme="NskTiffServiceId" FormalName="YOMIURI"/> </SentFrom> <DateAndTime> T </DateAndTime> <NewsService Scheme="XmlConsNewsService" FormalName="XMLConsYomiuri"/> <NewsProduct Scheme="NskNewsProduct" </NewsEnvelope> FormalName="NskNewsML:1"/> NewsService XMLConsYomiuri NewsPack MainichiJapanese XMLConsDenko XMLConsJavaCon

23 MediaType <NewsComponent Duid="NC-C-01"> <Role FormalName="Main"/> <ContentItem> <MediaType Scheme="IptcMediaTypes" FormalName="Text"/> <Format Scheme="NskFormats" FormalName="NskBasicText"/> <MimeType Scheme="IptcMimeTypes" FormalName="text/xml"/> <DataContent> <body> Topicset.iptc-mediatype.xml <p>... Text </body> Graphic </DataContent> </ContentItem> Photo </NewsComponent> Audio <NewsComponent Duid="NC-C-02"> Video <Role FormalName="Supplementary"/> <ContentItem Href="./ h14.jpg"> ComplexData <MediaType Scheme="IptcMediaTypes" FormalName="Photo"/> <MimeType Scheme="IptcMimeTypes" FormalName="image/jpeg"/> </ContentItem> </NewsComponent>

24 NewsML

25 SubjectCode IPTC topicset.iptc- subjectcode.xml SubjectCode Subject SubjectMatter SubjectDetail <DescriptiveMetadata> <SubjectCode> IPTC <!-- --> <Subject FormalName=" "/> TopicSet <!-- --> <SubjectMatter FormalName=" "/> <!-- --> SubjectQualifier <SubjectQualifier FormalName=" "/> </SubjectCode> </DescriptiveMetadata>

26 NewsML NewsML/NewsEnvelope/DateAndTime NewsML/NewsItem/Identification/DateId NewsML/NewsItem/Identification/ DateLabel NewsML/NewsItem/NewsComponent/ DateLine NewsML/NewsItem/NewsComponent/RightsMet adata/copyrightdate NewsML/NewsItem/NewsComponent/RightsMet adata/usagerights/startdate NewsML/NewsItem/NewsComponent/RightsMet adata/usagerights/enddate NewsML/NewsItem/NewsManagement/ FirstCreated NewsML/NewsItem/NewsManagement/ NewsML ISO-8601 ProviderId YYYYMMDD ISO-8601 ISO-8601 ThisRevisionCreated

27 ByLine Provider Creator Party Party FormalName TopicSet <NewsLines> <HeadLine> </HeadLine> <SubHeadLine> <AdministrativeMetadata> <Provider> <Party FormalName="NSK"/> </Provider> <Creator> <Party FormalName="NSK"/> </Creator> </AdministrativeMetadata> </SubHeadLine> <ByLine> </ByLine> <DateLine> </DateLine> topicset.nsk-party.xml topicset.iptc-provider.xml

28 <ContentItem> <MediaType FormalName="Text"/> <Format Scheme="NskFormats" FormalName="NskBasicTe xt"/> <MimeType FormalName="text/xml"/>... MediaType Text Graphic Photo Audio IIM MPEG EPS Adobe Illustrator v9.0 Compatible SVG Format MimeType text/vnd.iptc.nitf application/xbinhex application/x-latex audio/mp3 TopicSet IPTC Video ComplexData NskBasicText PDF XHTML GIF89a interlaced image/bmp text/html text/xml

29 DataContent DataContent DTD ANY <!ELEMENT DataContent ANY> or XML or CSV etc... NITF

30 NewsML NewsML NewsML NewsML PDF XHTML NITF

31 NITF IPTC

32

33 DOM

34 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

35 // import java.io.file; import javax.xml.parsers.documentbuilderfactory; import javax.xml.parsers.documentbuilder; import org.w3c.dom.document; // File sourcefile = new File("some "some-newsml-file.xml"); // DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setvalidating( ( true ); // DocumentBuilder builder = factory.newdocumentbuilder(); // Document doc = builder.parse(sourcefile);

36 // import org.newsml.toolkit.dom.xercesdomfactory; import org.newsml.toolkit.dom.domnewsmlfactory; import org.newsml.toolkit.newsml; // Xerces DOM DOM XercesDOMFactory factory = new XercesDOMFactory(); factory.setvalidation( ( true ); // NewsML DOMNewsMLFactory newsmlfactory = new DOMNewsMLFactory( ( factory ); // NewsML NewsML newsml = newsmlfactory.createnewsml( "some-newsml newsml-file.xml" );

37 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

38 // Value="JPN" /> NodeList lolist = aodoc.getelementsbytagname("property "Property"); // Property // for ( int i = 0 ; i < lolist.getlength() ; i++ ) { } Element loelm = (Element)(loList.item(i( Element)(loList.item(i)); )); System.out.println("Property "Property[" + i + "]: FormalName = " + loelm.getattribute("formalname "FormalName")) + " : Value = " + loelm.getattribute("value "Value") ); <Property FormalName="NskCountry" Property[0]: FormalName = NskRelevantArea : Value = Property[1]: FormalName = NskCountry : Value = JPN Property[2]: FormalName = NskJpnAreaCode : Value = Property[3]: FormalName = NskRelevantArea : Value = Property[4]: FormalName = NskCountry : Value = KOR Property[5]: FormalName = NskRelevantArea : Value = Property[6]: FormalName = NskCountry : Value = CMR Property[7]: FormalName = NskOriginatedArea : Value = Property[8]: FormalName = NskCountry : Value = JPN Property[9]: FormalName = NskJpnAreaCode : Value = 15201a Property[10]: FormalName = NskLocation : Value =

39 // NewsML NewsMLSession session = aonewsml.getsession(); // Property XPath // Property // BaseNode[] basenodes = session.getnodesbyxpath( ( (BaseNode)aoNewsML( BaseNode)aoNewsML, "//Property" ); // Property Property prop = null; for ( int i = 0 ; i < basenodes.length; ; i++ ) { } prop = (Property)baseNodes[i( Property)baseNodes[i]; System.out.println("Property "Property[" + i + "]: FormalName = " + prop.getname() + " : Value = " + prop.getvalue() ); Property[0]: FormalName = NskRelevantArea : Value = null Property[1]: FormalName = NskRelevantArea : Value = null Property[2]: FormalName = NskRelevantArea : Value = null Property[3]: FormalName = NskOriginatedArea : Value = null Property[4]: FormalName = NskCountry : Value = JPN Property[5]: FormalName = NskJpnAreaCode : Value = Property[6]: FormalName = NskCountry : Value = KOR Property[7]: FormalName = NskCountry : Value = CMR Property[8]: FormalName = NskCountry : Value = JPN Property[9]: FormalName = NskJpnAreaCode : Value = 15201a Property[10]: FormalName = NskLocation : Value =

40 // Toolkit1.0 // // NewsItem NewsItem newsitem = aonewsml.getnewsitem(0); // NewsComponent NewsComponent newscomponent = newsitem.getrootnewscomponent(); // Metadata Metadata[] metas = newscomponent.getmetadata(); for ( int i = 0 ; i < metas.length; ; i++ ) { // Property Property[] props = metas[i].getproperty(); for ( int j = 0 ; j < props.length; ; j++ ) { // Property FormalName getname() () // FormalName getname() String formalname = props[j].getname().getname(); (); String value = props[j].getvalue(); System.out.println("Property "Property[" + i + "]: FormalName = " + formalname + " : Value = " + value ); } } <NewsItem>... <NewsComponent>... <Metadata> <MetadataType FormalName...> <Property> <Property> <Property> </Property> </Metadata>

41 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

42 // Duid "NC0001" String duid = "NC0001"; Element loelm = aodoc.getelementbyid getelementbyid( duid ); System.out.println( ( "ID= ""+ ""+ duid +" "" "" + " " " + loelm.gettagname() ); <NewsComponent Duid="NC0001"/> ID="NC0001" NewsComponent

43 // Duid "NC0001" String duid = "NC0001"; // NewsML NewsMLSession session = aonewsml.getsession(); BaseNode basenode = session.getnodebyduid getnodebyduid( duid ); System.out.println( ( "ID= "" "" + duid + " """ "" + "" " + basenode.getxmlname() ); ID="NC0001" NewsComponent

44 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

45 /** * Property * Property * FormalName "NskOriginatedArea NskOriginatedArea" Property * Property FormalName FormalName "NskJpnAreaCode" Value * XPath * Property[@FormalName=" ="NskOriginatedArea"]/ * Property[@FormalName=" ="NskJpnAreaCode"]/@Value * */ // NodeList lolist = aodoc.getelementsbytagname("property "Property"); // FormalName=" ="NskOriginatedArea" Property // FormalName=" ="NskJpnAreaCode" Property // NskJpnAreaCode Property Property Property // FormalName NskOriginatedArea NskOriginatedArea for ( int i = 0; i < lolist.getlength(); i++ ) { Element loelm = (Element)loList.item(i( Element)loList.item(i); ); String lsform = loelm.getattribute("formalname "FormalName"); if ( lsform.equals("nskjpnareacode "NskJpnAreaCode")) ) { Element loparent = (Element)loElm.getParentNode( Element)loElm.getParentNode(); if ( loparent.getattribute("formalname" "FormalName").equals("NskOriginatedArea")) ) { System.out.println("Ans = " + loelm.getattribute("value "Value")) ); } } } <Metadata> <MetadataType FormalName="NskAreaInformation"/> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="KOR"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="CMR"/> </Property> <Property FormalName="NskOriginatedArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201a"/> <Property FormalName="NskLocation" Value=""/> </Property> </Metadata> Ans = 15201a

46 /** * Property * Property * FormalName "NskOriginatedArea" Property * Property FormalName "NskJpnAreaCode" Value * XPath * Property[@FormalName=" ="NskOriginatedArea"]/Property[@FormalName=" ="NskJpnAreaCode"]/@Value * */ NewsMLSession session = aonewsml.getsession(); BaseNode basenode = session.getnodebyxpath getnodebyxpath(aonewsml, "//Property[@FormalName Property[@FormalName= "NskOriginatedArea "]/Property[@FormalName= "NskJpnAreaCode "]" "]"); System.out.println("Ans = " + ((Property)baseNode).getValue Property)baseNode).getValue() ); <Metadata> <MetadataType FormalName="NskAreaInformation"/> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="KOR"/> </Property> <Property FormalName="NskRelevantArea"> <Property FormalName="NskCountry" Value="CMR"/> </Property> <Property FormalName="NskOriginatedArea"> <Property FormalName="NskCountry" Value="JPN"/> <Property FormalName="NskJpnAreaCode" Value="15201a"/> <Property FormalName="NskLocation" Value=""/> </Property> </Metadata> Ans = 15201a

47 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

48 // NodeList lolist = aodoc.getelementsbytagname("datacontent "DataContent"); // kiji-sample0926.xml sample0926.xml DataContent DataContent // Element item(0) item(0) Element loelm = (Element)loList.item(0); // DataContent XML StringBuffer lzbuff = new StringBuffer(); makestring( loelm, lzbuff ); // System.out.println( ( new String(lzBuff) ) ); makestring makestring( ( Node, StringBuffer ) <!-- NskBasicText.dtd --> <body> <p> </p> </body>

49 // NewsML NewsMLSession session = aonewsml.getsession(); // XPath BaseNode BaseNode basenode = session.getnodebyxpath(aonewsml, "NewsItem/NewsComponent/ContentItem/DataContent"); // DataContent DataContent content = (DataContent)baseNode( DataContent)baseNode; // System.out.println("=====Output Plain Text====="); System.out.println( content.gettext() ); // XML System.out.println("=====Output XML Text====="); String data = content.getxmlstring(); System.out.println( ( data ); //System.out.println System.out.println( ( new String( data.getbytes( "ISO8859_1" ), "MS932" ) ); =====Output Plain Text===== =====Output XML Text===== <body> <p>コンフェデレーション&#1 2474;杯で二日 日本が一次リーグ& #65314;組 カメルーン戦に2 0で 勝ち 勝ち点6として一番乗&#1242 6;でベスト4進出を決めた </p> </body>

50 DOM NewsML Duid Duid Property DOM Toolkit1.1 NewsML-Toolkit(ver1.1) Toolkit(ver1.1)

51 NewsEnvelope/DateAndTime DateAndTime = " T " try { NewsMLSession session = aonewsml.getsession(); BaseNode basenode = session.getnodebyxpath( aonewsml, "NewsEnvelope" ); // ISO DateTimeTest test = new DateTimeTest(); IdText dateandtime = ((NewsEnvelope)baseNode).getDateAndTime NewsEnvelope)baseNode).getDateAndTime(); // NewsEnvelope/DateAndTime System.out.println("DateAndTime = "" + dateandtime.tostring() + " ""); // DateAndTime // NewsMLException test.run( ( (BaseNode)dateandtime( BaseNode)dateandtime,, false ); } catch ( NewsMLException exp ) { System.err.println("NewsMLException occurred!:" + exp.getmessage()); } DateAndTime = " T " NewsMLException occurred!:date does not follow NewsML ISO 8601 subset: T

52 Xerces Apache-Jakarta Jakarta Xerces XercesDOMFactory DOMFactory import org.newsml.toolkit.dom.domfactory; public class JaxpDOMFactory implements DOMfactory { // public JaxpDOMFactory() {... } } // createdom(reader, String) public org.w3c.dom.document createdom( Reader reader, String baseurl ) {... }

XMLコンソーシアムWEEK

XMLコンソーシアムWEEK NewsML-DB NewsML NewsML-WG 2000 10 1.0 DTD, 2000 8 2002 2 IPTC DOC, HTML etc. MPE G etc. GIF, JPEG, NSK- TIFF etc AVI, AU, WAV etc. JPEG, GIF etc. XML XPATH XSLT) 1XML Java XML XML Yggdrasill NewsML-DB

More information

橡FSpec1024訳ver1_0公開用

橡FSpec1024訳ver1_0公開用 NewsML 1.0 Functional Specification 2000 10 24 Copyright 2000 International Press Telecommunications Council All Rights Reserved Ver.1.0 2001 3 1 This document is Japanese translation of IPTC NewsML Version1.0

More information

/07/16 P.2 P.3 NskNewsML NskNewsML P NewsML 1 ContentItem/Comment P.22 NSK Property 4 ( ) "( ) P.111 NewsML NewsML P.4 NewsMLv1.0.dtd

/07/16 P.2 P.3 NskNewsML NskNewsML P NewsML 1 ContentItem/Comment P.22 NSK Property 4 ( ) ( ) P.111 NewsML NewsML P.4 NewsMLv1.0.dtd NewsML 1 1.0.3 NewsML 2003.7.2 IPTC 2000 10 24 NewsML Version1.0 Functional Specification NewsML 1 1.0.1 2001/07/16 P.2 P.3 NskNewsML NskNewsML P.1197.1 NewsML 1 ContentItem/Comment P.22 NSK Property 4

More information

新聞協会NewsMLレベル1.2解説書

新聞協会NewsMLレベル1.2解説書 NewsML 1.2 1.2.1 NewsML 2005.9.15 2003 10 IPTC NewsML 1 NewsML 1.2 2005 7 NewsML 1.2 JIS NewsML NewsML 1.2 NewsML NskNewsML 1.2 IPTC2003 10 10 NewsML Version1.2 Functional Specification NewsML NewsML NewsML

More information

NewsML

NewsML NewsML XML 1 2 XML XML NewsML NewsML 3 4 5 NSK-TIFF etc GIF, JPEG, AVI, AU, WAV etc. DOC, HTML etc. 1. 2. MPEG etc. JPEG, GIF etc. 6 Asahi.com 7 8 9 1.0 10 19467 112 4 39 8 25 6 155 - 11 12 13 14 15 16

More information

はじめに このドキュメントは弊社 ( 株式会社 東京ニュース通信社 ) が ラジオ テレビ欄の情 報を加盟社へ NewsML 配信する場合の仕様を記述したものです 弊社 NewsML 配信は 新聞協会 NewsML 検討チームが策定した RadioTV-NewsML(V0.2) に準拠します また

はじめに このドキュメントは弊社 ( 株式会社 東京ニュース通信社 ) が ラジオ テレビ欄の情 報を加盟社へ NewsML 配信する場合の仕様を記述したものです 弊社 NewsML 配信は 新聞協会 NewsML 検討チームが策定した RadioTV-NewsML(V0.2) に準拠します また NewsML 配信仕様書 (1.3 版 ) ( 無断コピー 転載 配布を禁じます ) ( 株 ) 東京ニュース通信社 情報システム室 2009 年 4 月 13 日 はじめに このドキュメントは弊社 ( 株式会社 東京ニュース通信社 ) が ラジオ テレビ欄の情 報を加盟社へ NewsML 配信する場合の仕様を記述したものです 弊社 NewsML 配信は 新聞協会 NewsML 検討チームが策定した

More information

NewsML

NewsML 2003/03/05 Copyright(C) 2003 XML 1 NewsML Tamino XMLSpy XML NewsML-WG IT ( ) Agenda NewsML 2003/03 Tamino XMLSpy 2003/03/05 Copyright(C) 2003 XML 2 NewsML 2003/03 2003/03/05 Copyright(C) 2003 XML 3 NewsML

More information

XMLテクノロジを使いやすくする

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

untitled

untitled DCMI nagamori@slis.tsukuba.ac.jp DCMI Metadata Schema Registry DCMI Dublin Core Metadata Initiative authoritative source 2004/10/29 2 1 Metadata is the information and documentation which makes data understandable

More information

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である XML ... 2... 2... 2... 3... 4... 4... 5... 6... 6... 6... 7... 8... 8... 9... 9... 12... 12... 14... 15... 15... 15... 15... 15... 16... 16... 17... 17... 18... 19... 20... 21... 22... 28... 29... 30 1

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

スライド 1

スライド 1 Jameleon 2007130 Agenda Jameleon Jameleon Jameleon a) b) c) d) e) f) g) h) i) Jameleon Jameleon http://jameleon.sourceforge.net/ 200612123.3-M4 GNU Lesser General Public LicenseGNU LGPL Jameleon JUnit

More information

ALG ppt

ALG ppt 2012 6 21 (sakai.keiichi@kochi-tech.ac.jp) http://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2012/index.html 1 l l O(1) l l l 2 (123 ) l l l l () l H(k) = k mod n (k:, n: ) l l 3 4 public class MyHashtable

More information

untitled

untitled 2011 6 20 (sakai.keiichi@kochi-tech.ac.jp) http://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2011/index.html tech.ac.jp/k1sakai/lecture/alg/2011/index.html html 1 O(1) O(1) 2 (123) () H(k) = k mod n

More information

rzamjpdf.ps

rzamjpdf.ps IBM i 7.2 XML Toolkit IBM i 7.2 XML Toolkit 15 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Programming Programming XML Toolkit 1 2014.4 Copyright IBM Corporation 1999, 2013. XML Toolkit.............

More information

概要

概要 EWEB-3K-N069 PreSerV For Web Ver5.0 i 1... 1 1.1... 1 1.2... 2 1.2.1 PreSerV For Web Ver.5.0... 2 1.2.2... 2 2... 3 3... 4 3.1... 4 3.2... 4 3.2.1 Java... 4 3.2.2 JAXP... 5 3.2.3 Regexp... 6 3.2.4... 6

More information

セマンティックWebの動向とメタデータ

セマンティックWebの動向とメタデータ Web 2003-05-27 XML XML Web WG RDF RSS RDF ) RSS 1.0 XHTML SVG NewsML RSS XHTML SVG NewsML RSS RSS RS S RSsS Web PDF Web 2 HTML title meta Web NewsML Id RDF W3C Web 3 HTML NewsML RSS(RDF ) XML RDF HTML(XHTML)

More information

ユニット・テストの概要

ユニット・テストの概要 2004 12 ... 3... 3... 4... 5... 6... 6 JUnit... 6... 7 Apache Cactus... 7 HttpUnit/ServletUnit... 8 utplsql... 8 Clover... 8 Anthill Pro... 9... 10... 10... 10 SQL... 10 Java... 11... 11... 12... 12 setter

More information

OOW_I06

OOW_I06 G XDK XML Agenda XDK Overview XML Parser XML Schema Processor (XML SQL Utility XML Class Generator XML Transviewer Beans XSQL Servlet Oracle XML Developer s Kit Oracle XML Devleloper s Kit (XDK XML DB

More information

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch CX-Checker: C 1 1 2 3 4 5 1 CX-Checker CX-Checker XPath DOM 3 CX-Checker MISRA-C CX-Checker: A Customizable Coding Checker for C TOSHINORI OSUKA, 1 TAKASHI KOBAYASHI, 1 JUNICHI MASE, 2 NORITOSHI ATSUMI,

More information

Java (9) 1 Lesson Java System.out.println() 1 Java API 1 Java Java 1

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

More information

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 2 3 /usr/local javalib xerces-2_6_2 xalan-2_6_0 4 XERCES_HOME=/usr/local/javalib/xerces-2_6_2 CLASSPATH=$XERCES_HOME/xmlParserAPIs.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesImpl.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesSamples.jar:$CLASSPATH

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

ÇPÇRèÕÉIÉuÉWÉFÉNÉgéwå¸ã@î\.pdf

ÇPÇRèÕÉIÉuÉWÉFÉNÉgéwå¸ã@î\.pdf COPYRIGHT 200 COBOL CLASS-ID.. FACTORY. METHOD-ID.. OBJECT. METHOD-ID.. COPYRIGHT 200 COBOL 2 COPYRIGHT 200 COBOL 3 COPYRIGHT 200 COBOL 4 COPYRIGHT 200 COBOL 5 COPYRIGHT 200 COBOL 6 COPYRIGHT 200 COBOL

More information

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

新・明解Java入門

新・明解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,

More information

K227 Java 2

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

More information

アルゴリズムとデータ構造1

アルゴリズムとデータ構造1 1 200972 (sakai.keiichi@kochi sakai.keiichi@kochi-tech.ac.jp) http://www.info.kochi ://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2009/index.html 29 20 32 14 24 30 48 7 19 21 31 Object public class

More information

ワークショップ テスト駆動開発

ワークショップ テスト駆動開発 JUnit 5 5 20 20 FIT 20 FIT FIT 10 IT OO Web XML ADC2003 WG JUnit JUnit 3.8.1 URL: http://www.junit.org/index.htm junit.3.8.1.zip junit.jar c: junit junit.jar javac -classpath c: junit junit.jar JUnitTest.java

More information

A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2:

A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2: Java Jojo ( ) ( ) A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2: Java Jojo Jojo (1) :Globus GRAM ssh rsh GRAM ssh GRAM A rsh B Jojo (2) ( ) Jojo Java VM JavaRMI (Sun) Horb(ETL) ( ) JPVM,mpiJava etc. Send,

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Java J2EE Spring Spring Dependency Injection AOP Java J2EE 2 4 Application Java Enterprise API 5 6 mod_jk2 AJP13 Coyote/JK2 Connector Session Apache2 Tomcat5-a AJP13 Coyote/JK2 Connector Session Tomcat5-b

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版  

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

橡dbweb2002-sato.PDF

橡dbweb2002-sato.PDF Web Web 1 Web XML DB Web EAI 2 RDF RDF Schema DAML+OIL OWL (Web Ontology Language) 3 Resource Description Framework (RDF) W3C XML http://www.net.intap.or.jp/intap/s-web/

More information

CAC

CAC VOL.24NO.1 61 IMS Transaction 3270 DataBase Transaction OS/370 IMS Traditional Transaction Web Browser Transaction Internet WWW AP IIS APache WebLogic Websphere DataBase Oracle DB2 SQL Server Web Browser

More information

Oracle XDK(10.1.2)の技術概要

Oracle XDK(10.1.2)の技術概要 Oracle XDK 10.1.2 2005 1 Oracle XDK 10.1.2... 3... 3 Oracle XML Developer's Kit 10g... 4... 4... 5... 5 XML /XSL... 5 XML... 6 XML Class Generator... 6 XML JavaBeans... 6 XML SQL Utility... 7 XSQL Pages...

More information

Microsoft Word - jpluginmanual.doc

Microsoft Word - jpluginmanual.doc TogoDocClient TogoDocClient... i 1.... 1 2. TogoDocClient... 1 2.1.... 1 2.1.1. JDK 5.0... 1 2.1.2. Eclipse... 1 2.1.3.... 1 2.1.4.... 2 2.2.... 3 2.2.1.... 3 2.2.2.... 4 2.3. Eclipse Commands... 5 2.3.1....

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション NewsML NewsML-WG 1 NewsML-WG NewsML-WG 2 NEC NewsML-WG 3 1.0 NSK-NewsML NewsML NewsML-WG 4 etc GIF, JPEG, NSK-TIFF AVI, AU, WAV etc. 1. DOC, HTML etc. 2. MPEG etc. JPEG, GIF etc. NewsML-WG 5 NewsML Java

More information

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL -

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart Web for SellSide ver3.1.0 2002/03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart intra-mart intra-mart - 1 - intra-mart

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 9 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker,

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 11 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker,

More information

2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1

2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1 4 2004 4 3 2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1 - - I. 4 I- 4 I- 4 I- 6 I- 6 I- 7 II. 8 II- 8 II- 8 II-

More information

java_servlet2_見本

java_servlet2_見本 13 2 JSF Web 1 MVC HTML JSP Velocity Java 14 JSF UI PC GUI JSF Web 2.1 JSF JSF Web FORM FORM 2-1 JSF role, JSF JSF 15 Web JSF JSF Web Macromedia JSF JSF JSF 2.2 / Subscriber package com.mycompany.newsservice.models;

More information

事例に見るSCORMの・・・

事例に見るSCORMの・・・ SCORM 1.2 2005 8 2004, 2005 i 2004 6 1.0 2004 6 1.02 3.1.1 2005 1 1.1 2.1.4, 2.4.9, 2.5.2, 2.5.3, 3.1.3, 3.4.6, 3.5.2, 3.5.3. 2005 8 1.2 2.1.1 BOM 2.2.2, 2.4.10, 3.1.1 BOM 3.2.2, 3.4.7. ii 1. 1 2. 2 2.1

More information

Gartner Day

Gartner Day J2EE 1 J2EE C AP 2 J2EE AP DD java *.class java *.class java *.class *.class DD EAR, WAR, JAR orionapplicationclient.xmweb.xmapplication.jar.xml orion- orion-ejb- ml Oracle Application Server 10g *.jsp

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None クイック検索検索 目次 Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 None 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons.

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons. 1 PC PC 1 PC PC 1 PC PC PC PC 1 1 1 1.1 PC PC PC PC PC workstation PC 1.1.1 hardsoft 1.1.2 PC PC 1.1 1 1. 2. 3. CPU 1 Gustavb, Wikimedia Commons.http://en.wikipedia.org/wiki/Image:Personal_computer,_exploded_5.svg

More information

ALG ppt

ALG ppt 2012614 (sakai.keiichi@kochi-tech.ac.jp) http://www.info.kochi-tech.ac.jp/k1sakai/lecture/alg/2012/index.html 1 2 2 3 29 20 32 14 24 30 48 7 19 21 31 4 N O(log N) 29 O(N) 20 32 14 24 30 48 7 19 21 31 5

More information

Spring Framework Web Web Web DB AOP DI Java EE 3 Web WebMVC Web Java 4 DB H2 Database Java H2 Database http://www.h2database.com/ Version 1.0 Zip 5 H2 > cd $H2_HOME/bin > java cp h2.jar org.h2.tools.server

More information

Q&A集

Q&A集 & ver.2 EWEB-3C-N080 PreSerV for Web MapDataManager & i 1... 1 1.1... 1 1.2... 2 1.3... 6 1.4 MDM. 7 1.5 ( )... 9 1.6 ( )...12 1.7...14 1.8...15 1.9...16 1.10...17 1.11...18 1.12 19 1.13...20 1.14...21

More information

untitled

untitled JCSP CSP HPC H.Nakahara 1 2 CSP A B HPC H.Nakahara 3 CSP HPC H.Nakahara 4 CSP Process A chan Process B ( DFD) HPC H.Nakahara 5 DFD HPC H.Nakahara 6 DFD FAX OK? HPC H.Nakahara 7 HPC H.Nakahara 8 HPC H.Nakahara

More information

ERP連携モジュールチュートリアル

ERP連携モジュールチュートリアル ERP SAP R/3 API 2 2004 12 17 2004/10/08 2004/12/17 SAP SAP 1...1 1.1...1 1.2...1 1.3 SAP API...2 1.4...3 1.4.1...3 1.4.2...6 1.5...7 1.6...8 1.6.1 sap_auth_info.properties Key...8 1.6.2 sap_auth_info.properties...9

More information

untitled

untitled -1- 1. JFace Data Binding JFace Data Binding JFace SWT JFace Data Binding JavaBean JFace Data Binding JavaBean JFace Data Binding 1JFace Data Binding JavaBean JavaBean JavaBean name num JavaBean 2JFace

More information

スライド 1

スライド 1 XML Consortium XML Consortium XML Consortium XML Consortium XML Consortium XML Consortium Short version NewsML in Japan; how it is used and issues Takahiro Fujiwara Koji Tanaka Japan Newspaper Publishers

More information

Q&A集

Q&A集 MapViewer & ver.2 EWEB-3C-N055 PreSerV for Web MapViewer & i 1... 1 1.1... 1 1.2... 2 1.3... 3 1.4... 4 1.5... 5 1.6... 6 1.7... 7 1.8... 8 1.9... 9 1.10...11 1.11...12 1.12...13 1.13...14 1.14...15 1.15...16

More information

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成 Oracle Database 10g XML 2005 9 Oracle Database 10g XML TU UT... 3 TU UT... 3 TUOracle XML Developer's Kit 10gUT... 4 TU UT... 5 TU UT... 5 TU UT... 5 TUXML /XSL UT... 5 TUXML UT... 6 TUXML Class GeneratorUT...

More information

Adobe Postscript 3 Expansion Unit

Adobe Postscript 3 Expansion Unit 3 ... 4... 4... 4... 4... 4 OS... 4 PDF... 5... 6... 6... 6... 6... 6... 7... 7... 8... 18... 18... 18 PDF... 18 PS... 18... 18 /... 18... 18... 18... 18... 19... 19 PS... 19... 19... 19 Q&A... 19... 19...

More information

FileMaker Server 8 Advanced Web Publishing Installation Guide

FileMaker Server 8 Advanced Web Publishing Installation Guide FileMaker Server 8 Advanced! 13 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc.

More information

構造化された文書 技術文書 設定ファイルなど 文書の構造 文書の内容 文書の表示を分離する 例 : 技術文書 文書の構造 : 章 説 段落 箇条書きなど文書の内容文書の表示 : 章のタイトルのフォントサイズなど 2

構造化された文書 技術文書 設定ファイルなど 文書の構造 文書の内容 文書の表示を分離する 例 : 技術文書 文書の構造 : 章 説 段落 箇条書きなど文書の内容文書の表示 : 章のタイトルのフォントサイズなど 2 XML と Java 1 構造化された文書 技術文書 設定ファイルなど 文書の構造 文書の内容 文書の表示を分離する 例 : 技術文書 文書の構造 : 章 説 段落 箇条書きなど文書の内容文書の表示 : 章のタイトルのフォントサイズなど 2 例 : 設定ファイル 文書の構造 : 各設定項目の定義文書の内容 : 設定内容文書の表示 : マニュアルに掲載する書式 3 HTML Hyper Text Markup

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

9iAS_DEV.PDF

9iAS_DEV.PDF Oracle9i Application Server for Windows NT 1.0.2.0.0 2001.2.1 1 1 PL/SQL...3 1.1...3 1.2 PL/SQL Web Toolkit...5 1.3 Database Access Descriptor...6 1.4 PL/SQL...8 1.5 PL/SQL...10 1.6 PL/SQL...12 2 SERVLET...13

More information

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

More information

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] ( ) [2] RDF RSS 6

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] (   ) [2] RDF RSS 6 Web Web NEC Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122,000 2003 11 5,440 2003 5 7 [1] ( http://www.atmarkit.co.jp/ ) [2] RDF RSS 6% 7% 39% RDF RSS 42% RSS (RDF Site Summary)

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Biz/Browser 2005 118 Biz/Browser Rich Client Biz/Browser Macromedia Flash MX Curl Surge Runtime Adobe Acrobat B2B B2C OLAP Biz/Designer CRS Chain Reflection Script Flash MX Pro 2004 SWF Action Script Surge

More information

XSLの活用と技術内容の紹介

XSLの活用と技術内容の紹介 XSL XML WG XSLXSLT SWG XSL 1 Agenda XSL XSL-FO XSLT XSL-FO XSL 2 XSL XSL XSL 3 XSL XSL W3C 1.0 2001-10-15 XSL XML (XSLT) XML (XSL-FO Formatting-Object ) XML XSL 4 XSL 5 XML 1.0 1998-02-10 XSLT 1999-11-16

More information

08+11Extra

08+11Extra A - - #8 bit, Byte, Yutaka Yasuda bit : データの最小単位 1bit = 最小状態の単位 = 二進一桁 コンピュータ内部は電気配線 配線に電気が通っている いな い だけで処理 状態は2種 二値 二進 動作にうまく対応 二進一桁を配線一本で実現 0と1 二進数 で動作 の実体 1bit = 二進一桁 = 配線一本 Byte : Byte bit 8 1 Byte

More information

日 用 用 面 示 用 用 方

日 用 用 面 示 用 用 方 日 用 用 面 示 用 用 方 用 用 用 用 用 用 用 面 用

More information

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

More information

ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST

ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST PDBj のウェブサービス 金城 玲 大阪大学蛋白質研究所 日本蛋白質構造データバンク PDBj ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST PDBjの提供するウェブサービス 大きく分けて2種類 PDBデータの取得 検索用のRESTfulウェブサービ

More information

インターネットマガジン2001年4月号―INTERNET magazine No.75

インターネットマガジン2001年4月号―INTERNET magazine No.75 i illustration : Hada Eiji 206 INTERNET magazine 2001/4 jdc.sun.co.jp/wireless/ www.nttdocomo.co.jp/mc-user/i/java/ www.zentek.com/i-jae/ja/download.html INTERNET magazine 2001/4 207 Jump 01 Jump 02 Jump

More information

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN

More information

(Eclipse\202\305\212w\202\324Java2\215\374.pdf)

(Eclipse\202\305\212w\202\324Java2\215\374.pdf) C H A P T E R 11 11-1 1 Sample9_4 package sample.sample11; public class Sample9_4 { 2 public static void main(string[] args) { int[] points = new int[30]; initializearray(points); double averagepoint =

More information

組織変更ライブラリ

組織変更ライブラリ 2003 6 1...1 2...2 3...4 3.1...4 3.2...5 3.3...6 3.4...6 4...7 4.1...7 4.2...9 4.3...9 4.4...10 4.5...10 5 Web...11 5.1 WebUI...11 5.2Oracle 9iFS WebUI...12 6Oracle9i AS...13 6.1OiD...13 6.2 SSO...13 7...14

More information

Part1 159 a a

Part1 159 a a Tomcat 158 Part1 159 a a Tomcat hello World!

More information

オントロジ入門

オントロジ入門 Web Web 2004-01-23 XML XML Web WG Web ( ) Web (RDF RDF ) (OWL) ( ) WG ( ) 2004-01-23 2 Web Web Web XML ( ) 2004-01-23 3 Web Web 2 Web HTML(XHTML) ( ) Web ( ) 2 Web 2004-01-23 4 2 Web Web (XHTML) (RDF)

More information

JAVA H13 OISA JAVA 1

JAVA H13 OISA JAVA 1 JAVA H13 OISA JAVA 1 ...3 JAR...4 2.1... 4 2.2... 4...5 3.1... 5 3.2... 6...7 4.1... 7 4.2... 7 4.3... 10 4.4...11 4.5... 12 4.6... 13 4.7... 14 4.8... 15 4.9... 16...18 5.1... 18 5.2...19 2 Java Java

More information

Software Tag Implementation in Adobe Products

Software Tag Implementation in Adobe Products 2011 Adobe Systems Incorporated. All rights reserved. Software Tagging in Adobe Products Tech Note Adobe, the Adobe logo, and Creative Suite are either registered trademarks or trademarks of Adobe Systems

More information

コーディング基準.PDF

コーディング基準.PDF Java Java Java Java.java.class 1 private public package import / //////////////////////////////////////////////////////////////////////////////// // // // // ////////////////////////////////////////////////////////////////////////////////

More information

目 次 Java GUI 3 1 概要 クラス構成 ソースコード例 課題...7 i

目 次 Java GUI 3 1 概要 クラス構成 ソースコード例 課題...7 i Java GUI 3 Java GUI 3 - サンプルプログラム (1) - 2011-09-25 Version 1.00 K. Yanai 目 次 Java GUI 3 1 概要...1 2 クラス構成...2 3 ソースコード例...3 4 課題...7 i 1 概要まずは簡単なサンプルプログラムをみながら Java GUI の基本的なことを学びましょう 本サンプルは 図に示すようなひとつのメイン画面を使用します

More information

Oracle Forms Services R6i

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...

More information

Interoperability Workshop

Interoperability Workshop Portable Data for Imaging PDI PDI DICOM DICOM 2 PDI [RAD-47] Distribute Imaging Information on Media Display Web Portable Media Creator Image Display Report Reader DICOM Print Composer Media Importer 3

More information

3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println("Hello World");

3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println(Hello World); (Basic Theory of Information Processing) Java (eclipse ) Hello World! eclipse Java 1 3 Java 3.1 Hello World! Hello World public class HelloWorld { public static void main(string[] args) { System.out.println("Hello

More information

JTS Google App Engine S119325

JTS Google App Engine S119325 JTS Google App Engine S119325 1 3 1.1.............................. 3 1.2.............................. 3 1.3.............................. 4 2 Google App Engine 5 2.1 Google App Engine.....................

More information

08encode part 2

08encode part 2 A - - #8 bit, Byte, Yutaka Yasuda 1/2 0/1 CD 9 1 0 0 or 1 1/9 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 CD/CD-R CD / CD-R - 1 bit data (7bit) P 0 1 1 0 1

More information

Technical Communication Suite 4

Technical Communication Suite 4 ADOBE http://help.adobe.com/ja_jp/legalnotices/index.html iii 1................................................................................................................. 1.....................................................................................................

More information

bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 文字以下 2

bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 文字以下 2 #5 Yutaka Yasuda 1 bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 65536 文字以下 2 bit bit bit 3 1 (ASCII encoding) CPU 53 61 6d 70 6c 65 20 44 41 74

More information

WS-I Basic Profile 1.0 の概説

WS-I Basic Profile 1.0 の概説 WS-I Basic Profile 1.0 Copyright(C) Hitachi, Ltd. & NEC Corporation & FUJITSU LIMITED (2003), All Rights Reserved. 1 1. Basic Profile 2. Basic Profile 1.0 3. (Conformance) 4. MESSAGE 5. DESCRIPTION 6.

More information

HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f

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

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

More information

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63>

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63> imai@eng.kagawa-u.ac.jp (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

More information

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse Web 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java Java

More information

Adobe Postscript 3 Expansion Unit

Adobe Postscript 3 Expansion Unit ... 4... 31... 32... 4... 4... 4... 4 OS... 4 PDF... 5... 6... 6... 6... 6... 6... 7... 7... 8 Windows... 8 PS... 8 PS Folder... 8 Mac OS X... 9... 9 PS Folder... 9 PS... 10 Windows... 10 Mac OS X... 11

More information