gpt4 book ai didi

.net - J++ 到 J# : how to convert resources?

转载 作者:行者123 更新时间:2023-12-04 22:37:00 26 4
gpt4 key购买 nike

我有一个想要迁移到 J# 的 Visual J++ 项目。该代码不使用任何 Microsoft 特定的 API(如 WFC)或非标准语言扩展,因此从技术上讲,它完全符合 Java 1.1。

唯一的问题是资源(在 Java 世界中通常使用 Class.getResourceAsStream() API 访问)。

在 J++ 中,在项目配置中指定资源文件名模式就足够了,与模式匹配的所有资源都将嵌入到生成的 *.exe(作为 native Win32 资源)中,并且可以使用 Class.getResourceAsStream() 以编程方式访问。并手动使用任何 resource editor :

enter image description here

问题

将项目迁移到 Visual J# (VS 2005) 后,我立即失去了加载任何资源的能力(Class.getResourceAsStream() 开始返回 null 值),尽管每个“构建操作”设置都设置为“嵌入式资源”感兴趣的资源:

enter image description here

并且资源实际上嵌入到程序集中(可以通过增加的 *.exe 文件大小来确认;此外,我确实使用 dotPeek 工具看到了这些资源)。使用以下模式生成唯一资源名称:
<assembly's default namespace>.<Java package>.<file name with extension>
所以如果我有一个名为 README.txt 的文件嵌套在 com.example 下包,生成的程序集资源名称将为 default.com.example.README.txt :

dotPeek

Visual Studio 2003 的行为与 2005 版本不同:Class.getResourceAsStream()不返回任何 null但是一个 ArgumentOutOfRangeExceptionmscorlib.dll 抛出在运行时:

mscorlib.dll!System.String.Substring(int startIndex = 0, int length = -1) + 0xbb bytes  
vjslib.dll!com.ms.vjsharp.lang.VJSClassLoader.__findResource(System.Reflection.Assembly currentAssembly = {System.Reflection.Assembly}, string resName = "com/example/README.txt") + 0xc5 bytes
vjslib.dll!com.ms.vjsharp.lang.VJSClassLoader.__getResourcefromAssembly(System.Reflection.Assembly callingAssembly = {System.Reflection.Assembly}, string resName = "com.example.Main/+/com/example/README.txt") + 0x1b7 bytes
vjslib.dll!com.ms.vjsharp.lang.VJSClassLoader.getResourceAsStream(string resName = "com.example.Main/+/com/example/README.txt") + 0x57 bytes
vjslib.dll!java.lang.Class.getResourceAsStream(string resourceName = "com.example.Main/+/com/example/README.txt") + 0x10d bytes
test-resource-loading.exe!com.example.Main.main(String[] args = {Length=0}) Line 21 + 0x26 bytes

-- 但我相信这只是.NET Framework 2.0 版本中修复的一个错误。
com.ms.vjsharp.lang.VJSClassLoader显然不是我可以直接玩的公共(public)类(class)。

尝试的变通方法
  • 用绝对路径替换相对资源路径,用斜线替换点,反之亦然,带或不带前导斜线,带或不带默认程序集命名空间 - 无效。
  • 使用 javac 将整个项目编译成可执行的 *.jar编译器并将生成的 JAR 提供给 J# Binary Converter Tool ( jbimp.exe )——这不是一个选项。 J# Binary Converter Tool 由于其局限性而几乎没用(我尝试了两个版本——来自 VS 2003 和 VS 2005):
  • 调用Class.getResourceAsStream(...)在 Java 字节码中导致 System.InvalidProgramException在运行时抛出,尽管字节码到 MSIL 的转换是成功的。
  • 每当有一个 try-finally block (Java 中流 I/O 通常是这样完成的)时,jbimp.exe这些消息失败(我放弃了尝试重写仅从文件中读取的 5 行代码块):
    JbImp error: Internal Conversion Error : 'exc-unclosed-blocks'
    JbImp error: Failed to create type for class 'com/example/Main'. Creating stub type
    JbImp error: Internal Conversion Error : 'JbImp fatal error: Conversion failed'
  • 来自 VS 2003/2005 的 J++ 项目迁移向导没有帮助:它只是忽略任何未从 *.rc 引用的资源。/*.res文件。
  • 手动创建 *.resx文件,添加所有资源并删除Class.getResourceAsStream()完全调用(更改 Java 代码以将资源加载为 System.String(用于文本)和 System.Drawing.Bitmap(用于图像))。这是唯一可行的方法,但如果你有几十个小 *.gif项目中的文件,它变得非常乏味。

  • 问题

    为什么 vjslib.dllClass.getResourceAsStream()的实现按预期工作?我在这里想念什么?

    最佳答案

    虽然 Microsoft 在 J# 运行时中实现的 Java API 的文档含糊不清(特别是 Class.getResourceAsStream() 的页面指出,与 J++ 不同,J# 不支持此方法),但有一个解决方案。

    进一步研究表明,除了定制 class loaders (已被删除),所有 Java 1.1 甚至一些 Java 1.2 API已经实现——包括collectionsSwing .

    说到资源,How to: Upgrade Visual J++ 6.0 Applications That Use Resources 涵盖了这些资源。文章。 Java风格的资源可以转换为.resx使用 vjsresgen.exe Visual Studio 2005 应用程序示例附带的实用程序,源代码可从 Microsoft 获得。

    每个资源都被转换成一个字节数组。这是示例的屏幕截图 vjsresgen.exe -生成.resx在 Visual Studio 中打开的文件:

    vjsresgen.exe-generated .resx file

    关于.net - J++ 到 J# : how to convert resources?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41900175/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com