将VKCode转换为字符串Java

发布于 2025-01-23 12:39:52 字数 257 浏览 0 评论 0 原文

正如标题所暗示的那样,我想将字符串转换为VK代码,我的最初想法是:

HashMap<char,(what)> map= new HashMap<>();
map.put('A',KeyEvent.VK_A);

并为所有值做到这一点,然后通过字符串循环,但我不知道是否可能发生任何事情。

为每个角色提供开关是最好的方法吗?

As the title suggests I want to convert a string to VK code, my original idea was to have:

HashMap<char,(what)> map= new HashMap<>();
map.put('A',KeyEvent.VK_A);

And do that for all the values then loop through the string but I don't know if anything like that is possible.

Is the best way just to have a switch for every character?

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

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

发布评论

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

评论(1

何处潇湘 2025-01-30 12:39:53

vk 常数似乎是ints,因此您应该只有一个 map&lt;字符,整数&gt;

或者,您可以使用 getExtendedKeyCodeforchar ,传递 char 以获取密钥代码。

The VK constants appear to be ints, so you should just have a Map<Character, Integer>.

Alternately, you could use getExtendedKeyCodeForChar, passing in the char, to get the key code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文