2

epublibを使用して.epubファイルを表示する1つのアプリケーションをAndroidに実装しました。

http://www.siegmann.nl/epublib/android

このリンクに従って、私は次の手順を実行しました。

Slf4j-android。これはhttp://www.slf4j.org/android/から
ダウンロードできます。

入門

https://github.com/downloads/psiegman/epublib/epublib-core-latest.jarからepublib-core-latest.jarを
ダウンロードします。slf4j-androidをダウンロード
します。両方をAndroidプロジェクトに追加します。

ソースコード付きの完全な電子書籍リーダー。

Eclipse SDKバージョン:3.7.2を使用しています。

実行時にこのエラーが発生します:java.lang.NoClassDefFoundError:nl.siegmann.epublib.epub.EpubReader。

私は以下の言及コードを使用しました

import java.io.IOException;
import java.io.InputStream;
import java.util.List;

import nl.siegmann.epublib.domain.Book;
import nl.siegmann.epublib.domain.TOCReference;
import nl.siegmann.epublib.epub.EpubReader;
import android.app.Activity;
import android.content.res.AssetManager;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.util.Log;

/**
 * Log the info of 'assets/books/testbook.epub'.
 *
 * @author paul.siegmann
 *
 */
public class LogTestBookInfo extends Activity {
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    AssetManager assetManager = getAssets();
    try {
      // find InputStream for book
      InputStream epubInputStream = assetManager
          .open("books/testbook.epub");

      // Load Book from inputStream
      Book book = (new EpubReader()).readEpub(epubInputStream);

      // Log the book's authors
      Log.i("epublib", "author(s): " + book.getMetadata().getAuthors());

      // Log the book's title
      Log.i("epublib", "title: " + book.getTitle());

      // Log the book's coverimage property
      Bitmap coverImage = BitmapFactory.decodeStream(book.getCoverImage()
          .getInputStream());
      Log.i("epublib", "Coverimage is " + coverImage.getWidth() + " by "
          + coverImage.getHeight() + " pixels");

      // Log the tale of contents
      logTableOfContents(book.getTableOfContents().getTocReferences(), 0);
    } catch (IOException e) {
      Log.e("epublib", e.getMessage());
    }
  }

  /**
   * Recursively Log the Table of Contents
   *
   * @param tocReferences
   * @param depth
   */
  private void logTableOfContents(List<TOCReference> tocReferences, int depth) {
    if (tocReferences == null) {
      return;
    }
    for (TOCReference tocReference : tocReferences) {
      StringBuilder tocString = new StringBuilder();
      for (int i = 0; i < depth; i++) {
        tocString.append("\t");
      }
      tocString.append(tocReference.getTitle());
      Log.i("epublib", tocString.toString());

      logTableOfContents(tocReference.getChildren(), depth + 1);
    }
  }
}

解決策を教えてください。

4

2 に答える 2

2

外部jarに問題がある場合は、libsという名前のフォルダーを1つ作成します。

于 2012-05-08T05:41:04.777 に答える
0

「libs」という名前のフォルダを1つ作成する必要があります。次に、必要なすべてのjarファイルをコピーしてそのフォルダーに貼り付けます。jarファイルは自動的に含まれます

于 2013-01-22T16:39:32.683 に答える