Topic: 请问eclipse可以生成exe吗?就像jbuilder一样 |
Print this page |
1.请问eclipse可以生成exe吗?就像jbuilder一样 | Copy to clipboard |
Posted by: keel Posted on: 2005-03-02 10:19 是否有相关的插件,或者在导出时怎么配置一下? |
2.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: cnfree Posted on: 2005-03-02 10:22 插件不知道,eclipse本身应该没有,不过它有个工程platform-launcher可以用来生成exe,比JBuilder好多了 |
3.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: orchidflower Posted on: 2005-03-02 16:32 试试这个插件:AppStaGe。 http://frenzelsoft.de/indexAppStaGeeng.html |
4.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: keel Posted on: 2005-03-02 17:21 多谢二位指点!请问二楼版主,platform-launcher如何用呢?能否举一例看看? |
5.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: 孤独王子 Posted on: 2005-03-02 21:37 jb能生成exe么?胡说八道巴,只能声成jar |
6.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: 孤独王子] | Copy to clipboard |
Posted by: keel Posted on: 2005-03-03 14:19 jbuilder9和以上版本是可以生成.exe文件的,在Wizards>Native Executable Builder就是。 请问二楼版主,platform-launcher如何用呢?能否举一例看看? |
7.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: cnfree Posted on: 2005-03-05 20:13 实际上这个工程是一个C语言写的工程,主要要修改的是eclipse.c这个文件,在Window下需要安装VC6,在linux下要安装GCC,生成的exe主要是很灵活(自己写的吗),可以根据自己的需要灵活定制,比如在Jar启动之前的准备工作,举个例子,我做插件更新,每次可以在后台从服务器端下载到某个目录,下次启动之前,可以用这个exe将插件拷贝,Java程序启动之后就会自动更新了,可以做到透明的插件更新,用户根本就不知道整个过程。而且它对Jre的支持也很好。但是需要自己对C语言有良好的理解,这对Java程序员来说有点难度。 |
8.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: keel Posted on: 2005-03-07 09:35 这个工程是eclipse的开发包里面的吗?如果我要用的话,改写这个工程就可以了吧?多谢指点! |
9.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: cnfree Posted on: 2005-03-07 09:36 是的 |
10.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: qingxing2005 Posted on: 2005-03-15 22:32 我安装了AppStaGe plug-in,可是没有在首选项中找到它? 应该怎么使用它呢? |
11.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: keel Posted on: 2005-03-16 08:56 这个查看帮助就行了,AppStaGe装好后会在帮助里出现使用方法的,主要是做一个.aps文件,然后在这个文件上点右键生成就可以了,帮助里有个.aps文件的例子,改一下即可 |
12.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: qingxing2005 Posted on: 2005-03-20 03:50 keel wrote: 我做了一个asp文件,帮助上说"Now right-click the .aps file in the Navigator and choose FrenzelSoft Tools > Create Windows Executable (AppStaGe). " 我怎么找不到FrenzelSoft Tools这个选项呢?导航是在窗口->导航里面的吧。找不到FrenzelSoft Tools,但是能看到它的帮助。 应该怎么办呢? |
13.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: thermoboy Posted on: 2005-03-20 19:13 http://gcjbuilder.sourceforge.net/ 这个也是喔! |
14.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: thermoboy] | Copy to clipboard |
Posted by: Jove Posted on: 2005-03-21 09:50 这个名字真有趣GC JBuilder,不知道Borland会不会因此challenge。。 |
15.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: qingxing2005] | Copy to clipboard |
Posted by: keel Posted on: 2005-03-21 10:39 qingxing2005 wrote: 是.aps文件,不是asp文件,在这个文件上点右键可以看到“Create Windows Executable” |
16.Re:请问eclipse可以生成exe吗?就像jbuilder一样 [Re: keel] | Copy to clipboard |
Posted by: qingxing2005 Posted on: 2005-03-22 20:25 关于*.aps文件, 我有几个问题想问, ### # An .aps file contains some settings for the exe generator. # # # 'command' the command line to be executed by the generated executable. # [mandatory] # command=Notepad.exe 这里应该写什么?如何写成Notepad是说用Notedpad.exe运行么? # The name of a 32x32 pixels .ico file (without the .ico extension). This icon # is displayed on the Windows Desktop and in other places for the generated # executable. # The name must be relative to the project root. # [optional] # icon = icon.JPG.Ico (这个icon文件,我已经放在了与project相同的目录下, 就可以了么?) # The name of the executable to be generated (without the .exe extension). # [optional] # executableName = myExe executableName = ADMenuExe (生成文件的名字) 谢谢帮助 :0) |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |