使用 Android 进行预处理
我想根据一些营销要求对我的代码进行一些更改。 我认为最好的解决方案是使用预处理,就像在 J2ME 中一样。 我该怎么做呢?有没有任何工具可以完成这项任务? 谢谢, 埃亚尔。
I'd like to make some changes in my code according to some Marketing requires.
I thing that the best solution is using preprocessing, like in J2ME.
How can I do it? Is there any tool for this task?
Thanks,
Eyal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在以下链接中找到更多详细信息:
http: //groups.google.com/group/android-developers/browse_thread/thread/0daee1d93d1f21b3?pli=1
基本上都说Android不支持预处理,因为Java不支持。
然而,有一些方法可以使用 Java 中的系统属性来模拟预处理器的行为。已经有一个关于它的讨论:
#ifdef #ifndef in Java
You can find more details under the below link:
http://groups.google.com/group/android-developers/browse_thread/thread/0daee1d93d1f21b3?pli=1
Basically it is said that Android doesn't support preprocessing because Java doesn't support it.
However there are ways to imitate the behaviour of preprocessors using System Properties in Java. And there is already a discussion on it:
#ifdef #ifndef in Java
Java 有很多预处理器,我使用自己的 https://github.com/raydac/ java-comment-preprocessor 它支持 Maven、ANT 和 Gradle
描述该过程的 Wiki 项目页面可以在此处找到
There are number of preprocessors for Java, I use my own https://github.com/raydac/java-comment-preprocessor it supports Maven, ANT and Gradle
The Wiki project page where described the process can be found here
虽然这最初是为 J2ME 设计的,但预处理器本身是完全通用的。
(我大约 6 年前写的,最终出现在 Eclipse MTJ 中)。
http://antenna.sourceforge.net/wtkpreprocess.php
While this was originally designed for J2ME, the preprocessor itself is completely generic.
(I wrote it about 6 years ago, and it ended up in Eclipse MTJ).
http://antenna.sourceforge.net/wtkpreprocess.php