0

新しいデバイスと API レベルで完全に正常に動作するプロジェクトがありますが、エミュレーターでいくつかの問題が発生しています。エミュレーターでアプリケーションをロードすると、次の問題が発生します。

02-22 18:36:11.584: W/dalvikvm(652): VFY: unable to resolve exception class 872 (Lcom/google/zxing/WriterException;)
02-22 18:36:11.584: W/dalvikvm(652): VFY: unable to find exception handler at addr 0x7da
02-22 18:36:11.584: W/dalvikvm(652): VFY:  rejected Lcom/example/myapp/Card;.getFrontView (Landroid/content/Context;)Landroid/widget/LinearLayout;
02-22 18:36:11.584: W/dalvikvm(652): VFY:  rejecting opcode 0x0d at 0x07da
02-22 18:36:11.584: W/dalvikvm(652): VFY:  rejected Lcom/example/myapp/Card;.getFrontView (Landroid/content/Context;)Landroid/widget/LinearLayout;
02-22 18:36:11.584: W/dalvikvm(652): Verifier rejected class Lcom/example/myapp/Card;

java.lang.VerifyErrorこれは、Cardクラスの明白な結果につながります。

問題はWriterExceptionクラスで発生していますが、そのクラスは次のとおりです。

/*
 * Copyright 2008 ZXing authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.zxing;

/**
 * A base class which covers the range of exceptions which may occur when encoding a barcode using
 * the Writer framework.
 *
 * @author dswitkin@google.com (Daniel Switkin)
 */
public final class WriterException extends Exception {

  public WriterException() {
  }

  public WriterException(String message) {
    super(message);
  }

  public WriterException(Throwable cause) {
    super(cause);
  }

}

これが古い API レベルで問題を引き起こしている理由について、私は何かを見逃しているかもしれませんが、それが私がここで質問している理由です! SO の集合的かつ大衆的な知識に感謝します。

編集:

スローされた WriterException を、クラスのより深い内部で処理して削除しようとしました。これにより、上記のように問題が発生するのを防ぎました(理由はまだわかりません)。しかし、新たな問題が発生しました!

これは、ライブラリが正しく読み取られていないことに関係していると思われます。core.jar内部にZXing を含むユーザー ライブラリがあります。.jar はすべてのクラスをリストし、すべて開きますが、次のようになります。

02-22 18:56:49.564: W/dalvikvm(688): VFY: unable to find class referenced in signature (Lcom/google/zxing/BarcodeFormat;)
02-22 18:56:49.604: E/dalvikvm(688): Could not find class 'com.google.zxing.EncodeHintType', referenced from method Barcode.BarcodeGenerator.encodeAsBitmap
02-22 18:56:49.604: W/dalvikvm(688): VFY: unable to resolve const-class 869 (Lcom/google/zxing/EncodeHintType;) in LBarcode/BarcodeGenerator;
02-22 18:56:49.604: D/dalvikvm(688): VFY: replacing opcode 0x1c at 0x0011
02-22 18:56:49.604: E/dalvikvm(688): Could not find class 'com.google.zxing.MultiFormatWriter', referenced from method Barcode.BarcodeGenerator.encodeAsBitmap
02-22 18:56:49.604: W/dalvikvm(688): VFY: unable to resolve new-instance 870 (Lcom/google/zxing/MultiFormatWriter;) in LBarcode/BarcodeGenerator;

今私の警告で。私は本当にこれらすべてに困惑しています..

これは、プロジェクトの Java Build Path > Libraries に追加した ZXing と呼ばれる User Library のスクリーンショットです。

4

1 に答える 1

0

WriterExceptionコードを変更する必要はありません。ライブラリ自体は問題ありません。実際には多くのクラスが欠落していることがわかります。おそらくすべてのクラスです。実際にはライブラリを含めていません。あなたはそれを再パッケージしたと言っているので、問題はそこにあります. クラスが に.jar正しく含まれていないか、 に として含まれている可能性が.jarあります.jar

于 2013-02-23T07:17:59.500 に答える