Java生成Rdf

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

package com.ninemax.application.rss;

import com.rsslibj.elements.Channel;

public class Rdf {

	public static void main(String[] args) throws Exception {

		Channel channel = new Channel();
		channel.setDescription("This is my sample channel.");
		channel.setLink("/");
		channel.setTitle("MyChannel");
		channel.setImage("/", "TheChannelImage", "/foo.jpg");
		channel.setTextInput("/search", "SearchTheChannelImage",
				"TheChannelImage", "s");
		channel.addItem("/item1", "TheFirstItemcoversdetailsonthefirstitem>",
				"TheFirstItem").setDcContributor("JosephB.Ottinger");
		channel.addItem("/item2", "TheSecondItemcoversdetailsontheseconditem",
				"TheSecondItem").setDcCreator("JasonBell");
		System.out.println("The feed in RDF:" + channel.getFeed("rdf"));
	}
}

输出:

The feed in RDF:


  
    This is my sample channel.
    MyChannel
    /
    
    
    
      
        
        
      
    
  
  
    TheChannelImage
    /
    /foo.jpg
  
  
    TheChannelImage
    /search
    SearchTheChannelImage
    s
  
  
    TheFirstItem
    /item1
    TheFirstItemcoversdetailsonthefirstitem>
    JosephB.Ottinger
  
  
    TheSecondItem
    /item2
    TheSecondItemcoversdetailsontheseconditem
    JasonBell
  


转载于:https://my.oschina.net/Tsher2015/blog/639960

你可能感兴趣的:(Java生成Rdf)