如何使用ant构建java me CDC应用程序?我可以使用 javaSE 构建吗

发布于 2024-11-01 09:49:00 字数 147 浏览 0 评论 0原文

你好,我正在尝试构建在 CDC 基础上工作的 java me 应用程序,我看到了天线,但无法使其工作,它似乎面向 CLDC,但我无法使其工作,我想知道我是否需要这样做有什么具体的东西可以让它编译 CDC 应用程序吗? 或者是否有另一种方法可以使用 ant 构建 CDC 应用程序?

Hi im trying to build our java me app that works on CDC base, I have seen antenna, but cant get it to work, it seems to be geared towards CLDC, but i cant make it work, and am wondering if i need to do anything specific to make it compile a CDC app?
or if there is another way to build CDC apps with ant?

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

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

发布评论

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

评论(1

画▽骨i 2024-11-08 09:49:00

您实际上并不需要天线功能,cdc 应用程序就像 JavaSe 应用程序。您可以使用普通的 ant 来构建 cdc 应用程序。 JavaSE javac + cdc 库就足够了。

   <target name="app" >
        <mkdir dir="${dir.build.compiled}" />
        <javac  classpathref="app.cp"
                fork="true" debug="on"
                srcdir="<sources>"
                source="1.3"
                target="1.3"
                destdir="${dir.compiled}"/>
        <jar destfile="${app.jar}" basedir="${dir.compiled}" />
    </target>

You don't really need antenna feature, cdc app is like to JavaSe app.You could use plain ant for building cdc apps. JavaSE javac + cdc libraries is enought.
F.e.

   <target name="app" >
        <mkdir dir="${dir.build.compiled}" />
        <javac  classpathref="app.cp"
                fork="true" debug="on"
                srcdir="<sources>"
                source="1.3"
                target="1.3"
                destdir="${dir.compiled}"/>
        <jar destfile="${app.jar}" basedir="${dir.compiled}" />
    </target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文