程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> WPF調用嵌入的非.net的EXE資源文件

WPF調用嵌入的非.net的EXE資源文件

編輯:C#入門知識

新建項目如packEXE,添加外部文件f.exe作為嵌入的資源,如圖:

添加代碼:

using System.Reflection;//++
using System.IO;

namespace packEXE
{
    /// <summary>
    /// MainWindow.xaml 的交互邏輯
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            //MessageBox.Show(System.IO.Path.GetFileNameWithoutExtension(System.IO.Path.GetTempFileName()));

            String projectName = Assembly.GetExecutingAssembly().GetName().Name.ToString();
            using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(projectName + ".f.exe"))
            {
                Byte[] b = new Byte[stream.Length];
                stream.Read(b, 0, b.Length);
                string s = System.IO.Path.GetTempPath()+"f.exe";
                if (File.Exists(s))
                    File.Delete(s);
                using (FileStream f = File.Create(s))
                {
                    f.Write(b, 0, b.Length);
                }
            }
        }
    }
}

然後,你就可以隨意調用f.exe文件了,用完還可以刪掉不留痕跡。(作者:一劍)

當然,如果你是.net的EXE文件,有更簡單的方法來嵌入調用,參考“Dll嵌入到WPF中”。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved