Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3999444
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:39:29+00:00 2026-05-20T07:39:29+00:00

Why am i getting this error message? Testcase: createIndexBatch_usingTheTestArchive(src.LireHandlerTest): Caused an ERROR at/lux/imageanalysis/ColorLayoutImpl java.lang.NoClassDefFoundError:

  • 0

Why am i getting this error message?

Testcase: createIndexBatch_usingTheTestArchive(src.LireHandlerTest):        Caused an ERROR
at/lux/imageanalysis/ColorLayoutImpl
java.lang.NoClassDefFoundError: at/lux/imageanalysis/ColorLayoutImpl
        at net.semanticmetadata.lire.impl.SimpleDocumentBuilder.createDocument(Unknown Source)
        at net.semanticmetadata.lire.AbstractDocumentBuilder.createDocument(Unknown Source)
        at backend.storage.LireHandler.createIndexBatch(LireHandler.java:49)
        at backend.storage.LireHandler.createIndexBatch(LireHandler.java:57)
        at src.LireHandlerTest.createIndexBatch_usingTheTestArchive(LireHandlerTest.java:56)
Caused by: java.lang.ClassNotFoundException: at.lux.imageanalysis.ColorLayoutImpl
        at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)

I am trying to create a Lucene index using documents that are created using Lire. When i am getting to the point where it tries to create a document using the document builder it gives me this error message.

input paramaters first run:
filepath: “test_archive” (this is a image archive)
whereToStoreIndex: “test_index” (Where i am going to store the index)
createNewIndex: true

Since the method is recursive (see the if statement where it checks if is a directory) it will call itself multiple times but all the recursive calls uses createNewIndex = false.

Here is the code:

public static boolean createIndexBatch(String filepath, String whereToStoreIndex, boolean createNewIndex){
        DocumentBuilder docBldr = DocumentBuilderFactory.getDefaultDocumentBuilder();
        try{
            IndexWriter indexWriter = new IndexWriter(
                                                    FSDirectory.open(new File(whereToStoreIndex)),
                                                    new SimpleAnalyzer(),
                                                    createNewIndex,
                                                    IndexWriter.MaxFieldLength.UNLIMITED
                                                    );
            File[] files = FileHandler.getFilesFromDirectory(filepath);
            for(File f:files){
                if(f.isFile()){
                    //Hopper over Thumbs.db filene...
                    if(!f.getName().equals("Thumbs.db")){
                        //Creating the document that is going to be stored in the index
                        String name = f.getName();
                        String path = f.getPath();
                        FileInputStream stream = new FileInputStream(f);
                        Document doc = docBldr.createDocument(stream, f.getName());

                        //Add document to the index
                        indexWriter.addDocument(doc);
                    }
                }else if(f.isDirectory()){
                    indexWriter.optimize();
                    indexWriter.close();
                    LireHandler.createIndexBatch(f.getPath(), whereToStoreIndex, false);
                }
            }
            indexWriter.close();
        }catch(IOException e){
            System.out.print("IOException in createIndexBatch:\n"+e.getMessage()+"\n");
            return false;
        }

        return true;
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T07:39:30+00:00Added an answer on May 20, 2026 at 7:39 am

    It sounds like you are missing a java library.

    I think you need to download Caliph & Emir, that may be used indirectly by Lire.

    http://www.semanticmetadata.net/download/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.