新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   >>中国XML论坛<<     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论Semantic Web(语义Web,语义网或语义万维网, Web 3.0)及相关理论,如:Ontology(本体,本体论), OWL(Web Ontology Langauge,Web本体语言), Description Logic(DL, 描述逻辑),RDFa,Ontology Engineering等。
    [返回] 中文XML论坛 - 专业的XML技术讨论区W3CHINA.ORG讨论区 - Web新技术讨论『 Semantic Web(语义Web)/描述逻辑/本体 』 → SPARQL Query查询OWL遇到的问题 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 3762 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: SPARQL Query查询OWL遇到的问题 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     hrballen 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(高数修炼中)
      文章:38
      积分:198
      门派:XML.ORG.CN
      注册:2008/7/13

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给hrballen发送一个短消息 把hrballen加入好友 查看hrballen的个人资料 搜索hrballen在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看hrballen的博客楼主
    发贴心情 SPARQL Query查询OWL遇到的问题

    请大家帮助一下,我姓用SPARQL Query来查询OWL本体中的Datatype属性值,不知查询语句怎么写?请指教,最好能详细些,谢谢!请推荐几篇相关的文章或帮助

       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2008/8/5 16:07:00
     
     aximou 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(猛啃高等数学)
      文章:10
      积分:122
      门派:W3CHINA.ORG
      注册:2006/9/24

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给aximou发送一个短消息 把aximou加入好友 查看aximou的个人资料 搜索aximou在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看aximou的博客2
    发贴心情 
    最详细的就是直接给你写出来!把你的本体文件贴上来吧!要不怎么详细呢??
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2008/8/6 15:23:00
     
     hrballen 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(高数修炼中)
      文章:38
      积分:198
      门派:XML.ORG.CN
      注册:2008/7/13

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给hrballen发送一个短消息 把hrballen加入好友 查看hrballen的个人资料 搜索hrballen在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看hrballen的博客3
    发贴心情 
    <?xml version="1.0"?>
    <rdf:RDF
        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
        xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
        xmlns:owl="http://www.w3.org/2002/07/owl#"
        xmlns="http://www.owl-ontologies.com/unnamed.owl#"
      xml:base="http://www.owl-ontologies.com/unnamed.owl">
      <owl:Ontology rdf:about=""/>
      <owl:Class rdf:ID="Animal">
        <owl:disjointWith>
          <owl:Class rdf:ID="Plant"/>
        </owl:disjointWith>
      </owl:Class>
      <owl:Class rdf:ID="Herbivore">
        <rdfs:subClassOf rdf:resource="#Animal"/>
        <rdfs:subClassOf>
          <owl:Restriction>
            <owl:allValuesFrom>
              <owl:Class rdf:about="#Plant"/>
            </owl:allValuesFrom>
            <owl:onProperty>
              <owl:ObjectProperty rdf:ID="eat"/>
            </owl:onProperty>
          </owl:Restriction>
        </rdfs:subClassOf>
      </owl:Class>
      <owl:Class rdf:ID="小样">
        <rdfs:subClassOf rdf:resource="#Herbivore"/>
      </owl:Class>
      <owl:Class rdf:about="#Plant">
        <owl:disjointWith rdf:resource="#Animal"/>
      </owl:Class>
      <owl:Class rdf:ID="Leaf">
        <rdfs:subClassOf rdf:resource="#Plant"/>
        <rdfs:subClassOf>
          <owl:Restriction>
            <owl:allValuesFrom>
              <owl:Class rdf:ID="Branch"/>
            </owl:allValuesFrom>
            <owl:onProperty>
              <owl:TransitiveProperty rdf:ID="is_part_of"/>
            </owl:onProperty>
          </owl:Restriction>
        </rdfs:subClassOf>
      </owl:Class>
      <owl:Class rdf:ID="Giaffe">
        <rdfs:subClassOf>
          <owl:Restriction>
            <owl:onProperty>
              <owl:ObjectProperty rdf:about="#eat"/>
            </owl:onProperty>
            <owl:allValuesFrom rdf:resource="#Leaf"/>
          </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf rdf:resource="#Herbivore"/>
      </owl:Class>
      <owl:Class rdf:about="#Branch">
        <rdfs:subClassOf rdf:resource="#Plant"/>
        <rdfs:subClassOf>
          <owl:Restriction>
            <owl:onProperty>
              <owl:TransitiveProperty rdf:about="#is_part_of"/>
            </owl:onProperty>
            <owl:allValuesFrom>
              <owl:Class rdf:ID="Tree"/>
            </owl:allValuesFrom>
          </owl:Restriction>
        </rdfs:subClassOf>
      </owl:Class>
      <owl:Class rdf:ID="Zoo"/>
      <owl:Class rdf:ID="Lion">
        <rdfs:subClassOf>
          <owl:Class rdf:ID="Carnivore"/>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
          <owl:Restriction>
            <owl:allValuesFrom rdf:resource="#Herbivore"/>
            <owl:onProperty>
              <owl:ObjectProperty rdf:about="#eat"/>
            </owl:onProperty>
          </owl:Restriction>
        </rdfs:subClassOf>
      </owl:Class>
      <owl:Class rdf:about="#Carnivore">
        <owl:equivalentClass>
          <owl:Class>
            <owl:intersectionOf rdf:parseType="Collection">
              <owl:Restriction>
                <owl:allValuesFrom rdf:resource="#Animal"/>
                <owl:onProperty>
                  <owl:ObjectProperty rdf:ID="maineat"/>
                </owl:onProperty>
              </owl:Restriction>
              <owl:Class rdf:about="#Animal"/>
            </owl:intersectionOf>
          </owl:Class>
        </owl:equivalentClass>
      </owl:Class>
      <owl:Class rdf:about="#Tree">
        <rdfs:subClassOf rdf:resource="#Plant"/>
      </owl:Class>
      <owl:ObjectProperty rdf:ID="eated">
        <owl:inverseOf>
          <owl:ObjectProperty rdf:about="#eat"/>
        </owl:inverseOf>
      </owl:ObjectProperty>
      <owl:ObjectProperty rdf:ID="Belonging">
        <rdfs:range rdf:resource="#Zoo"/>
        <rdfs:domain rdf:resource="#Animal"/>
        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
        >属于</rdfs:comment>
      </owl:ObjectProperty>
      <owl:ObjectProperty rdf:about="#maineat">
        <rdfs:subPropertyOf>
          <owl:ObjectProperty rdf:about="#eat"/>
        </rdfs:subPropertyOf>
        <owl:inverseOf>
          <owl:ObjectProperty rdf:ID="inverse_of_eat_14"/>
        </owl:inverseOf>
      </owl:ObjectProperty>
      <owl:ObjectProperty rdf:about="#eat">
        <owl:inverseOf rdf:resource="#eated"/>
      </owl:ObjectProperty>
      <owl:ObjectProperty rdf:about="#inverse_of_eat_14">
        <rdfs:subPropertyOf rdf:resource="#eated"/>
        <owl:inverseOf rdf:resource="#maineat"/>
      </owl:ObjectProperty>
      <owl:DatatypeProperty rdf:ID="Tel">
        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
        <rdfs:domain rdf:resource="#Zoo"/>
        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
        >电话号码</rdfs:comment>
      </owl:DatatypeProperty>
      <owl:DatatypeProperty rdf:ID="Address">
        <rdfs:domain rdf:resource="#Zoo"/>
        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
        >地址属性</rdfs:comment>
      </owl:DatatypeProperty>
      <owl:TransitiveProperty rdf:about="#is_part_of">
        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
      </owl:TransitiveProperty>
      <Lion rdf:ID="ShangLion">
        <eat>
          <Giaffe rdf:ID="Heihei">
            <eated rdf:resource="#ShangLion"/>
            <Belonging>
              <Zoo rdf:ID="Shanghai_Zoo">
                <Tel xml:lang="en">011-12345678</Tel>
                <Address xml:lang="en">Shanghai road</Address>
              </Zoo>
            </Belonging>
          </Giaffe>
        </eat>
        <Belonging rdf:resource="#Shanghai_Zoo"/>
      </Lion>
      <Lion rdf:ID="BeiLion">
        <Belonging>
          <Zoo rdf:ID="Beijing_Zoo">
            <Tel xml:lang="en">010-12345678</Tel>
            <Address xml:lang="en">Beijing Xizhimen Road</Address>
          </Zoo>
        </Belonging>
      </Lion>
      <Lion rdf:ID="TianLion">
        <Belonging>
          <Zoo rdf:ID="Tianjin_Zoo">
            <Address xml:lang="en">Tianjin road</Address>
            <Tel xml:lang="en">012-12345678</Tel>
          </Zoo>
        </Belonging>
      </Lion>
      <Branch rdf:ID="Branch_1"/>
      <Leaf rdf:ID="Leaf_2"/>
      <Tree rdf:ID="Tree_3"/>
      <Giaffe rdf:ID="Baibai">
        <Belonging rdf:resource="#Tianjin_Zoo"/>
      </Giaffe>
      <Giaffe rdf:ID="Lanlan">
        <Belonging rdf:resource="#Beijing_Zoo"/>
      </Giaffe>
    </rdf:RDF>

    <!-- Created with Protege (with OWL Plugin 2.1, Build 284)  http://protege.stanford.edu -->

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2008/8/28 19:23:00
     
     hrballen 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(高数修炼中)
      文章:38
      积分:198
      门派:XML.ORG.CN
      注册:2008/7/13

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给hrballen发送一个短消息 把hrballen加入好友 查看hrballen的个人资料 搜索hrballen在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看hrballen的博客4
    发贴心情 
    如果我想查zoo的地址属性该怎么写?谢谢
    另外,如何通过属性的值来显示他所属的类,比如通过上面的地址来得到zoo的名字
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2008/8/28 19:29:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/12/18 18:57:54

    本主题贴数4,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    78.125ms