2011-11-11 9 views
2

Netbeansを使用してRDFファイルを作成するプログラムを作成しています。スレッド「main」java.lang.NoClassDefFoundError:org/slf4j/LoggerFactoryにエラーExceptionが発生しています。Javaを使用してRDFファイルを作成する

import java.io.*; 
import java.lang.*; 
import com.hp.hpl.jena.rdf.model.*; 
import com.hp.hpl.jena.vocabulary.*; 

public class RDFWriter extends Object 
    { 
    public static void main (String args[]) 
    { 
     String personURI = "http://localhost/hrudya"; 
     String givenName = "GOPIKA"; 
     String familyName = "NG"; 
     String fullName  = givenName + " " + familyName; 
     String course1 = "http://localhost/relationship/"; 
     try { 
      // create an empty model 
     Model model = ModelFactory.createDefaultModel(); 
      // create the resource and add the properties cascading style 
     Resource hrudya = model.createResource(personURI); 
     Property course = model.createProperty(course1,"course"); 
     hrudya.addProperty(VCARD.FN, fullName); 
     hrudya.addProperty(VCARD.Given, givenName); 
     hrudya.addProperty(DC.title, "SEMANTIC WEB"); 
     hrudya.addProperty(course,"M.Tech_CSE"); 
     //model.write(new PrintWriter(System.out)); 
     FileOutputStream fout=new FileOutputStream("p2cse10009/Desktop/rr.rdf"); 
     model.write(fout); 

     FileOutputStream fout1=new FileOutputStream("p2cse10009/Desktop/hr.xml"); 
     model.write(fout1); 
     } 
     catch (Exception e) 
     { 
      System.out.println("Failed: " + e); 
     } 
    } 

    public RDFWriter() { 
    } 
} 

どのライブラリを追加しますか?

+0

あなたは依存管理にMavenを使用していますか? – YMomb

答えて

1

Which library should I add?

あなたはそれはあなたの選択の実際のロギングライブラリを使用するためにslf4jライブラリと結合ライブラリを追加する必要があります。

SLF4J User Manualを読むことをお勧めします。

関連する問題