HtmlRenderer.Utils.FontsUtils抛出新的异常mysql

时间:2015-10-07 07:48:40

标签: mysql

MySQL正在显示错误消息:HtmlRenderer.Utils.FontsUtils。刚刚在https://bugs.mysql.com/bug.php?id=75673和以下代码中找到了解决方案。这里的任何人,在哪里可以找到相关文件进行以下更改:

在FontsUtils类中替换 -

static FontsUtils()
      {
          _fontsMapping["monospace"] = "Courier New";
          _fontsMapping["Helvetica"] = "Arial";

          foreach (var family in FontFamily.Families)
          {
             _existingFontFamilies.Add(family.Name, family);
          }
        }

使用:        static FontsUtils()          {              _fontsMapping [" monospace"] =" Courier New&#34 ;;              _fontsMapping [" Helvetica"] =" Arial&#34 ;;

         foreach (var family in FontFamily.Families)
         {
             if (!_existingFontFamilies.ContainsKey(family.Name))
             {
                 _existingFontFamilies.Add(family.Name, family);
             }
         }
     }

3 个答案:

答案 0 :(得分:1)

在同一页面上找到我的答案:

如果你去codeplex并获得1.4.14版本的下载 https://htmlrenderer.codeplex.com/releases/view/100328

打开项目,然后搜索 static FontsUtils() 用Michael Gaillez建议代替代码 将程序集版本更改为1.4.6而不是1.4.14,以便mysql工作台不会抱怨。 在程序文件中编译并重命名/替换HtmlRenderer.dll> mysql> [您的工作台文件夹]>

这样做之后,它在胜利10中表现完美。 希望这有助于某人,因为这是自jan报道以来的一个错误...

答案 1 :(得分:0)

https://bugs.mysql.com/bug.php?id=75673下载新的HtmlRenderer.dll 替换为C:\ Program Files \ MySQL \ MySQL Workbench 8.0 CE

答案 2 :(得分:0)

在PC Windows 10上安装工作台时,我遇到了同样的问题,

1。下载新的HtmlRenderer.dll

通过单击https://bugs.mysql.com/file.php?id=22868&bug_id=75673

下载HtmlRenderer.dll

2。替换文件

将新的HtmlRenderer.dll文件替换为C:\ Program Files \ MySQL \ MySQL Workbench 8.0 CE

参考: https://bugs.mysql.com/bug.php?id=75673