我正试图从Mapsforge
运行“一个非常基本的Android应用示例”我正在使用Eclipse。 Android SDK工具高于19版。
我做了以下事情: 我下载了jar文件并将它们放在libs /文件夹中
我的项目编译得很好但是当它运行时我得到了NoClassDefFoundError。 我一直在寻找答案。我已尝试将广告添加到构建路径,并尝试遵循建议How to fix the “NoClassDefFoundError” with ADT 17和NoClassDefFoundError with Mapsforge 0.4.0 and Eclipse。 什么都没有帮助。
任何想法? 提前谢谢!
MainActivity.java的内容:
// name of the map file
private static final String MAPFILE = "austria.map";
private MapView mapView;
private TileCache tileCache;
private TileRendererLayer tileRendererLayer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidGraphicFactory.createInstance(this.getApplication());
this.mapView = new MapView(this);
setContentView(this.mapView);
this.mapView.setClickable(true);
this.mapView.getMapScaleBar().setVisible(true);
this.mapView.setBuiltInZoomControls(true);
this.mapView.getMapZoomControls().setZoomLevelMin((byte) 10);
this.mapView.getMapZoomControls().setZoomLevelMax((byte) 20);
this.tileCache = AndroidUtil.createTileCache(this, "mapcache",
mapView.getModel().displayModel.getTileSize(), 1f,
this.mapView.getModel().frameBufferModel.getOverdrawFactor());
}
@Override
protected void onStart() {
super.onStart();
this.mapView.getModel().mapViewPosition.setCenter(new LatLong(48.120539, 16.269245));
this.mapView.getModel().mapViewPosition.setZoomLevel((byte) 12);
tileRendererLayer.setMapFile(getMapFile());
tileRendererLayer.setXmlRenderTheme(InternalRenderTheme.OSMARENDER);
this.mapView.getLayerManager().getLayers().add(tileRendererLayer);
}
@Override
protected void onStop() {
super.onStop();
this.mapView.getLayerManager().getLayers().remove(this.tileRendererLayer);
this.tileRendererLayer.onDestroy();
}
@Override
protected void onDestroy() {
super.onDestroy();
this.tileCache.destroy();
this.mapView.getModel().mapViewPosition.destroy();
this.mapView.destroy();
AndroidResourceBitmap.clearResourceBitmaps();
}
private File getMapFile() {
File file = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS), MAPFILE);
return file;
}
我的LogCat:
01-17 10:59:33.759: E/AndroidRuntime(29027): FATAL EXCEPTION: main
01-17 10:59:33.759: E/AndroidRuntime(29027): Process: com.example.mapsforgetest, PID: 29027
01-17 10:59:33.759: E/AndroidRuntime(29027): java.lang.NoClassDefFoundError: Failed resolution of: Lorg/mapsforge/map/reader/MapDatabase;
01-17 10:59:33.759: E/AndroidRuntime(29027): at org.mapsforge.map.layer.renderer.TileRendererLayer.<init>(TileRendererLayer.java:54)
01-17 10:59:33.759: E/AndroidRuntime(29027): at com.example.mapsforgetest.MainActivity.onStart(MainActivity.java:67)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1220)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.Activity.performStart(Activity.java:5949)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2261)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.ActivityThread.access$800(ActivityThread.java:144)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.os.Handler.dispatchMessage(Handler.java:102)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.os.Looper.loop(Looper.java:135)
01-17 10:59:33.759: E/AndroidRuntime(29027): at android.app.ActivityThread.main(ActivityThread.java:5221)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.reflect.Method.invoke(Native Method)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.reflect.Method.invoke(Method.java:372)
01-17 10:59:33.759: E/AndroidRuntime(29027): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
01-17 10:59:33.759: E/AndroidRuntime(29027): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
01-17 10:59:33.759: E/AndroidRuntime(29027): Caused by: java.lang.ClassNotFoundException: Didn't find class "org.mapsforge.map.reader.MapDatabase" on path: DexPathList[[zip file "/data/app/com.example.mapsforgetest-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
01-17 10:59:33.759: E/AndroidRuntime(29027): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
01-17 10:59:33.759: E/AndroidRuntime(29027): ... 15 more
01-17 10:59:33.759: E/AndroidRuntime(29027): Suppressed: java.lang.ClassNotFoundException: org.mapsforge.map.reader.MapDatabase
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.Class.classForName(Native Method)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
01-17 10:59:33.759: E/AndroidRuntime(29027): at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
01-17 10:59:33.759: E/AndroidRuntime(29027): ... 16 more
01-17 10:59:33.759: E/AndroidRuntime(29027): Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
答案 0 :(得分:0)
Mapsforge似乎没有很好地解释实际需要哪些库才能使其正常工作。我有同样的问题,你的问题只是你没有安装所有必需的依赖项。
即使你没有直接使用 mapsforge-map-reader-0.5.0.jar 中的类,它 是mapforge中TileRendererLayer类的依赖项 - 地图0.5.0.jar。如果你在第54行弹出TileRendererLayer.java的source code,你就会看到这一点。第29行列出了MapDatabase类的导入,这就是抛出异常的原因。
我认为你的例子在没有其他两个可安装库的情况下运行正常,这些库是mapsforge-map-writer-0.5.0.jar和mapsforge-map-awt-0.5.0.jar。如果你最终也必须使用这些类,那么将来包括它们会对你有所帮助,但是mapsforge-map-writer-0.5.0.jar似乎有点不稳定(它包括来自writer包和核心包的类) )。自己编译它们可能是一个更好的选择。
所有库文件都与前三个文件CI server (release 0.5.0)位于同一位置。一旦将它们添加为库,就像添加其他库一样,这里不应该有任何麻烦。
答案 1 :(得分:0)
最后,这在我的案例中有效:
将以下jar放在libs /文件夹中:
mapsforge-core-0.5.0.jar
mapsforge-map-0.5.0.jar
mapsforge-map-android-0.5.0.jar
mapsforge-map-awt-0.5.0.jar
mapsforge-map-reader-0.5.0.jar
将它们添加到构建路径(在Eclipse中右键单击jar - &gt;添加到构建路径)
最后,我不必为自己编译任何罐子。只需要删除编写器jar并使用读取器jar。我应该更仔细地阅读LocCat:“失败的解决方案:Lorg / mapsforge / map / reader / MapDatabase”
答案 2 :(得分:0)
java.lang.NoClassDefFoundError:解析失败:Lorg / mapsforge / map / reader / MapDatabase;
它说,你需要mapforge-map-reader库。
您需要的完整库列表,您可以看到here
对于Android应用程序,您需要: