在黑莓中创建项目时出现错误

发布于 2024-12-06 02:53:34 字数 281 浏览 0 评论 0原文

我正在使用黑莓应用程序,在黑莓中创建项目时出现错误错误

InvalidRegex:模式值 '([a-zA-Z_]{1,63}[\sa-zA-Z_0-9.]{0,63}[;]?)*' 不是有效的正则 表达。

报告的错误是:

''-' 是无效的字符范围。写 '-'。'在“{2}”列。

我可以运行模拟器,但无法将我的应用程序放入其下载文件夹中。

I am using the blackberry application and I am getting the error while creating the project in blackberry

Error:

InvalidRegex: Pattern value
'([a-zA-Z_]{1,63}[\s-a-zA-Z_0-9.]{0,63}[;]?)*' is not a valid regular
expression.

The reported error was:

''-' is an invalid character range. Write '-'.' at column '{2}'.

I am able to run the simulator, but not getting my application in the download folder of it.

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

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

发布评论

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

评论(1

酸甜透明夹心 2024-12-13 02:53:34

卸载 Java 7 并安装 JDK 1.6,然后使用它运行 Eclipse 插件。 Eclipse 的最新插件存在一个错误。

事实上,这不是一个有效的正则表达式。大概应该是
([a-zA-Z_]{1,63}[\s\-a-zA-Z_0-9.]{0,63}[;]?)*

这是来自RIM:“问题出在 Java 1.7 上,该插件当前不支持该版本。您需要使用 Java 1.6 32 位通过 Eclipse 插件进行开发。” (来源)

Uninstall Java 7 and install JDK 1.6, then run Eclipse plugin with it. There is a bug in the latest plugin for Eclipse.

This is, in fact, not a valid regular expression. It should probably be
([a-zA-Z_]{1,63}[\s\-a-zA-Z_0-9.]{0,63}[;]?)*

This is a quote from RIM: "The problem is with Java 1.7, which the plugin doesn't currently support. You will need to use Java 1.6 32bit for development with the Eclipse plugin." (source)

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