久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <legend id='M5QMs'><style id='M5QMs'><dir id='M5QMs'><q id='M5QMs'></q></dir></style></legend>
    <tfoot id='M5QMs'></tfoot>

  1. <small id='M5QMs'></small><noframes id='M5QMs'>

      • <bdo id='M5QMs'></bdo><ul id='M5QMs'></ul>

    1. <i id='M5QMs'><tr id='M5QMs'><dt id='M5QMs'><q id='M5QMs'><span id='M5QMs'><b id='M5QMs'><form id='M5QMs'><ins id='M5QMs'></ins><ul id='M5QMs'></ul><sub id='M5QMs'></sub></form><legend id='M5QMs'></legend><bdo id='M5QMs'><pre id='M5QMs'><center id='M5QMs'></center></pre></bdo></b><th id='M5QMs'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='M5QMs'><tfoot id='M5QMs'></tfoot><dl id='M5QMs'><fieldset id='M5QMs'></fieldset></dl></div>

      在本機 Windows 應用程序的資源中嵌入文本文件

      Embed Text File in a Resource in a native Windows Application(在本機 Windows 應用程序的資源中嵌入文本文件)

        <bdo id='ccilI'></bdo><ul id='ccilI'></ul>
        <tfoot id='ccilI'></tfoot>
        <i id='ccilI'><tr id='ccilI'><dt id='ccilI'><q id='ccilI'><span id='ccilI'><b id='ccilI'><form id='ccilI'><ins id='ccilI'></ins><ul id='ccilI'></ul><sub id='ccilI'></sub></form><legend id='ccilI'></legend><bdo id='ccilI'><pre id='ccilI'><center id='ccilI'></center></pre></bdo></b><th id='ccilI'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ccilI'><tfoot id='ccilI'></tfoot><dl id='ccilI'><fieldset id='ccilI'></fieldset></dl></div>
            <tbody id='ccilI'></tbody>
        • <legend id='ccilI'><style id='ccilI'><dir id='ccilI'><q id='ccilI'></q></dir></style></legend>

            • <small id='ccilI'></small><noframes id='ccilI'>

                本文介紹了在本機 Windows 應用程序的資源中嵌入文本文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我有一個 C++ Windows 程序.我有一個包含一些數據的文本文件.目前,文本文件是一個單獨的文件,它在運行時加載并解析.如何將其作為資源嵌入到二進制文件中?

                I have a C++ Windows program. I have a text file that has some data. Currently, the text file is a separate file, and it is loaded at runtime and parsed. How is it possible to embed this into the binary as a resource?

                推薦答案

                由于您正在開發本機 Windows 應用程序,因此您想要做的是創建一個用戶定義的資源,將文本文件的內容嵌入到編譯后的資源.

                Since you're working on a native Windows application, what you want to do is to create a user-defined resource to embed the contents of the text file into the compiled resource.

                用戶定義資源的格式是記錄在MSDN,加載它的函數.

                The format of a user-defined resource is documented on MSDN, as are the functions for loading it.

                您將文本文件嵌入到資源文件中,如下所示:

                You embed your text file in a resource file like this:

                nameID typeID filename
                

                其中 nameID 是標識資源的唯一 16 位無符號整數,typeID 是標識資源類型的某個大于 255 的唯一 16 位無符號整數(您可以在 resource.h 文件中定義這些整數).filename 是您要將其二進制內容嵌入到已編譯資源中的文件的路徑.

                where nameID is some unique 16-bit unsigned integer that identifies the resource and typeID is some unique 16-bit unsigned integer greater than 255 that identifies the resource type (you may define those integers in the resource.h file). filename is the path to the file that you want to embed its binary contents into the compiled resource.

                所以你可能是這樣的:

                resource.h中:

                // Other defines...
                
                #define TEXTFILE        256
                #define IDR_MYTEXTFILE  101
                

                在您的資源文件中:

                #include "resource.h"
                
                // Other resource statements...
                
                IDR_MYTEXTFILE TEXTFILE "mytextfile.txt"
                

                然后你像這樣加載它(為了清楚起見省略了錯誤檢查代碼):

                Then you load it like this (error-checking code omitted for clarity):

                #include <windows.h>
                #include <cstdio>
                #include "resource.h"
                
                void LoadFileInResource(int name, int type, DWORD& size, const char*& data)
                {
                    HMODULE handle = ::GetModuleHandle(NULL);
                    HRSRC rc = ::FindResource(handle, MAKEINTRESOURCE(name),
                        MAKEINTRESOURCE(type));
                    HGLOBAL rcData = ::LoadResource(handle, rc);
                    size = ::SizeofResource(handle, rc);
                    data = static_cast<const char*>(::LockResource(rcData));
                }
                
                // Usage example
                int main()
                {
                    DWORD size = 0;
                    const char* data = NULL;
                    LoadFileInResource(IDR_MYTEXTFILE, TEXTFILE, size, data);
                    /* Access bytes in data - here's a simple example involving text output*/
                    // The text stored in the resource might not be NULL terminated.
                    char* buffer = new char[size+1];
                    ::memcpy(buffer, data, size);
                    buffer[size] = 0; // NULL terminator
                    ::printf("Contents of text file: %s
                ", buffer); // Print as ASCII text
                    delete[] buffer;
                    return 0;
                }
                

                請注意,您實際上不必釋放資源,因為資源駐留在可執行文件的二進制文件中,系統會在程序退出時自動刪除它們(函數 FreeResource()在 32 位和 64 位 Windows 系統上沒有任何內容).

                Note that you don't actually have to free the resource since the resource resides in the binary of the executable and the system will delete them automatically when the program exits (the function FreeResource() does nothing on 32-bit and 64-bit Windows systems).

                因為數據駐留在可執行二進制文件中,您不能直接通過檢索到的指針修改它(這就是為什么 LoadFileInResource() 函數實現將指針存儲在 const char* 中的原因)).您需要使用 BeginUpdateResource()UpdateResource()EndUpdateResource() 函數來做到這一點.

                Because the data resides in the executable binary, you can't modify it via the retrieved pointer directly (that's why the LoadFileInResource() function implementation stores the pointer in a const char*). You need to use the BeginUpdateResource(), UpdateResource(), and EndUpdateResource() functions to do that.

                這篇關于在本機 Windows 應用程序的資源中嵌入文本文件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                In what ways do C++ exceptions slow down code when there are no exceptions thown?(當沒有異常時,C++ 異常會以何種方式減慢代碼速度?)
                Why catch an exception as reference-to-const?(為什么要捕獲異常作為對 const 的引用?)
                When and how should I use exception handling?(我應該何時以及如何使用異常處理?)
                Scope of exception object in C++(C++中異常對象的范圍)
                Catching exceptions from a constructor#39;s initializer list(從構造函數的初始化列表中捕獲異常)
                Difference between C++03 throw() specifier C++11 noexcept(C++03 throw() 說明符 C++11 noexcept 之間的區別)
                <legend id='5lRlV'><style id='5lRlV'><dir id='5lRlV'><q id='5lRlV'></q></dir></style></legend>
                • <bdo id='5lRlV'></bdo><ul id='5lRlV'></ul>

                  <i id='5lRlV'><tr id='5lRlV'><dt id='5lRlV'><q id='5lRlV'><span id='5lRlV'><b id='5lRlV'><form id='5lRlV'><ins id='5lRlV'></ins><ul id='5lRlV'></ul><sub id='5lRlV'></sub></form><legend id='5lRlV'></legend><bdo id='5lRlV'><pre id='5lRlV'><center id='5lRlV'></center></pre></bdo></b><th id='5lRlV'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5lRlV'><tfoot id='5lRlV'></tfoot><dl id='5lRlV'><fieldset id='5lRlV'></fieldset></dl></div>
                    1. <tfoot id='5lRlV'></tfoot>
                    2. <small id='5lRlV'></small><noframes id='5lRlV'>

                        <tbody id='5lRlV'></tbody>

                          主站蜘蛛池模板: 国产小视频在线观看 | 亚洲视频在线一区 | 欧美黑人一级爽快片淫片高清 | 日韩成人在线网站 | 欧美日韩一区二区在线 | 精品一区二区久久久久久久网站 | 精品福利一区 | 欧美h视频| 欧美日韩久久 | 另类二区 | 国产欧美日韩在线播放 | 国产精品福利视频 | 中文字幕亚洲视频 | 日韩在线一区二区三区 | 国产精品a久久久久 | 久久日韩粉嫩一区二区三区 | аⅴ资源新版在线天堂 | 紧缚调教一区二区三区视频 | 久久久国产一区 | 成年人在线观看 | 夜夜草av| 97色在线视频 | 亚洲人成网站777色婷婷 | 成人午夜免费视频 | 色婷婷国产精品 | 国产精品色av | 视频在线一区二区 | 国产农村一级国产农村 | 91.xxx.高清在线| 精品久| 一区二区小视频 | 日韩欧美一级 | 91在线一区二区 | 欧美一区二区三 | 蜜桃黄网 | 波多野结衣精品在线 | 欧美男人天堂 | 精品电影 | 日韩精品一区二区三区在线观看 | 黄色一级大片视频 | 2022精品国偷自产免费观看 |