我的 Windows 窗体应用程序在另一台计算机上运行时抛出 filenotfoundException

发布于 2024-08-18 12:09:12 字数 592 浏览 8 评论 0原文

我使用 vs2008 创建了一个 Windows 窗体应用程序。当我将 bin 文件夹复制到另一台计算机并尝试运行它时,应用程序会抛出 filenotfoundexception 错误。我查看了项目中使用的引用文件,每个文件都指向

  • c:\Windows\Microsoft.NET\Framework\v2.0.50727...
  • c:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5。 ..
  • c:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1...

我已验证这些目录是否存在于导致错误的其他计算机上。 我试过并抛出错误的两台机器是

没有安装 VS2008 的 Windows XP 和 安装了 VS2008 的 Windows 7

我在两台确实可以工作的机器上尝试过,它们是

安装了 VS2008 的 Windows XP 和 我的开发机器是 Windows 7 和 VS2008

任何人都可以为我提供一些关于这个问题的见解 谢谢

I have created a windows forms application using vs2008. when i copy the bin folder over to another machine and try to run it the applicaiton throws a filenotfoundexception error. Ive looked at the references files used in the project and each file points to either

  • c:\Windows\Microsoft.NET\Framework\v2.0.50727...
  • c:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5...
  • c:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1...

i have verified that these directories exist on the other machines that cause the error.
the two machines that i have tried it on and that throw there error are

Windows XP WITHOUT VS2008 installed and
Windows 7 with VS2008 installed

I tried on two machine that DID work which are

Windows XP with VS2008 and
and my development machine Windows 7 with VS2008

Could anyone provide me with some insight on this issue
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

乙白 2024-08-25 12:09:12

如果您已注册所有全局程序集,则如果您正在读取/打开某个带有引发异常的绝对路径的文件,请检查您的代码。

假设您正在打开一个文件 c:\abc.txt。该文件可能在开发人员计算机上可用,但在其他测试计算机上不可用。您可能想检查程序中的 File.Open 函数调用。

if you have all the global assemblies registered then check in your code if you are reading/opening some file with absolute path which is raising exception.

Say you had a file c:\abc.txt which you were opening. This file might be available on developer machine but not in other test machines. You may want to check the File.Open function calls in your program.

南…巷孤猫 2024-08-25 12:09:12

未找到哪个文件,尝试捕获异常并记录未找到哪个文件的异常详细信息。
另外你说安装VS2008,应用程序可以工作,然后尝试安装VS2008可再发行运行时库。它需要网络浏览器和其他 api。

which file not found, try to catch the exception and log the exception details which file is not found.
Also you say installing VS2008, the app works, then just try installing VS2008 redistributable runtime libraries. It needed for webbrowser and other api.

地狱即天堂 2024-08-25 12:09:12

也许使用

Dim rootPath As String = Server.MapPath("~")

和相对路径(?)

maybe use

Dim rootPath As String = Server.MapPath("~")

and a relative path(?)

旧伤还要旧人安 2024-08-25 12:09:12

使用 sysinternals 中的进程监视器 - 这将让您看到您的应用程序正在尝试打开哪些文件

use process monitor from sysinternals - this will let you see what files your app is trying to open

染火枫林 2024-08-25 12:09:12

确保将整个 Main 函数包裹在 try catch() 中。然后您可以显示消息以找出缺少哪个程序集。完成此操作后,转到引用中的该程序集,并在其属性中设置 CopyLocal = true。

前任:

        [STAThread]
    static void Main()
    {
        try
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MyForm());
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }

Make sure you wrap the entirety of your Main function guts in a try catch(). Then you can show the message to find out what assembly is missing. Once you do that, go to that assembly in the references, and in it's properties set CopyLocal = true.

Ex:

        [STAThread]
    static void Main()
    {
        try
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MyForm());
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文