在黑莓中创建项目时出现错误
我正在使用黑莓应用程序,在黑莓中创建项目时出现错误错误
:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
卸载 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)