0

我正在尝试iphonebackupextracter在 MAC OSX 10.8.4 上运行该软件。我从你的网站下载了最新版本。当我运行时mono iPhoneBackupExtractor.exe出现错误。我尝试在 mono 的支持网站上寻找解决方案,但没有成功。以下是完整的错误消息。

感谢你的帮助。

An unhandled error occurred creating the main form. If running under OS X, this is likely due to a problem with your X11 installation. Please contact support@iphonebackupextractor.com for help.
The error was as follows:
System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.WindowsFormsSynchronizationContext ---> System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.ThemeEngine ---> System.ArgumentException: The requested FontFamily could not be found [GDI+ status: FontFamilyNotFound]
  at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename unknown>:0 
  at System.Drawing.FontFamily..ctor (GenericFontFamilies genericFamily) [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) System.Drawing.FontFamily:.ctor (System.Drawing.Text.GenericFontFamilies)
  at System.Drawing.FontFamily.get_GenericSansSerif () [0x00000] in <filename unknown>:0 
  at System.Drawing.Font.CreateFont (System.String familyName, Single emSize, FontStyle style, GraphicsUnit unit, Byte charSet, Boolean isVertical) [0x00000] in <filename unknown>:0 
  at System.Drawing.Font..ctor (System.String familyName, Single emSize, FontStyle style, GraphicsUnit unit, Byte gdiCharSet, Boolean gdiVerticalFont) [0x00000] in <filename unknown>:0 
  at System.Drawing.Font..ctor (System.String familyName, Single emSize, System.String systemName) [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) System.Drawing.Font:.ctor (string,single,string)
  at System.Drawing.SystemFonts.get_DefaultFont () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Theme..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.ThemeWin32Classic..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.ThemeVisualStyles..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.ThemeEngine..cctor () [0x00000] in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at System.Windows.Forms.SystemInformation.get_MenuAccessKeysUnderlined () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Control..ctor () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:.ctor ()
  at System.Windows.Forms.WindowsFormsSynchronizationContext..cctor () [0x00000] in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at System.Windows.Forms.Control..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.ScrollableControl..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.ContainerControl..ctor () [0x00000] in <filename unknown>:0 
  at System.Windows.Forms.Form..ctor () [0x00000] in <filename unknown>:0 
  at...ctor () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check).:.ctor ()
  at . (System.String[] ) [0x00000] in <filename unknown>:0 
Stacktrace:

  at.. (bool) <0x00087>
  at System.ComponentModel.Component.Finalize () <0x00013>
  at (wrapper runtime-invoke) object.runtime_invoke_virtual_void__this__ (object,intptr,intptr,intptr) <0xffffffff>

本机堆栈跟踪:

0   mono                                0x000959dc mono_handle_native_sigsegv + 284
1   mono                                0x00004a48 mono_sigsegv_signal_handler + 248
2   libsystem_c.dylib                   0x999758cb _sigtramp + 43
3   ???                                 0xffffffff 0x0 + 4294967295
4   ???                                 0x0042c774 0x0 + 4376436
5   ???                                 0x0383b154 0x0 + 58962260
6   ???                                 0x01fe5fa1 0x0 + 33447841
7   mono                                0x00122ee4 mono_gc_run_finalize + 964
8   mono                                0x00264ab3 GC_invoke_finalizers + 179
9   mono                                0x000eaea5 mono_gc_invoke_finalizers + 21
10  mono                                0x00125073 finalizer_thread + 579
11  mono                                0x001eef61 start_wrapper_internal + 641
12  mono                                0x001ef057 start_wrapper + 23
13  mono                                0x0023599e thread_start_routine + 206
14  mono                                0x0026fd68 GC_start_routine + 120
15  libsystem_c.dylib                   0x999895b7 _pthread_start + 344
16  libsystem_c.dylib                   0x99973d4e thread_start + 34

来自 gdb 的调试信息:

=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================

Abort trap: 6
4

1 回答 1

0

日志显示创建 UI 窗口面板似乎存在问题,因为可以在您的 Mac 上找到应用程序尝试查找的系统字体。

发生这种情况可能有两个主要原因:-

  1. 最新版本的山狮(你指出它是 10.8.4)在他们的字体库中没有那个字体
  2. 该应用程序仅针对 Windows 创建,开发人员并未将其彻底移植到 Mac 上的 /tested。

如果您需要紧急提取您的 iphone 数据,那么最好尝试使用为 mac 制作且不需要单声道的其他应用程序

更新

看看 Total Saver 应用程序。它可以在 mac 和 windows 上运行,无需您安装任何 3rd 方框架(单声道)。不过,您将需要 JRE(Java 运行时环境)。

您可以通过谷歌搜索应用程序名称或单击下面的软百科链接免费下载:- http://www.softpedia.com/get/Mobile-Phone-Tools/IPhone/Total-Saver.shtml

产品网站链接:- http://www.myphonedata.com/iphone

于 2013-07-23T13:22:29.683 回答