Fuel v1.1

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
14 posts Page 1 of 2
Contributors
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Fuel v1.1
Zulf
My first ever Java application, no tuts used.

Screenshot:
v1.0
Image
v1.1 (Show, no download yet)
Image

Description:
This is just a crappy calculator I made to test out my Java skills after learning a bit. No hate. Source included.

Download:
http://uppit.com/6dn4tn42iees/Fuel.rar

- Zulf
You do not have the required permissions to view the files attached to this post.
Last edited by Zulf on Sun Oct 10, 2010 3:50 pm, edited 1 time in total.
Image
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: Fuel v1.1
Codex
Nice Zulf

This looks nice, i haven't tried Java but i think its hard, so i will have to try it soon as it looks nice.
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
User avatar
mikethedj4
VIP - Site Partner
VIP - Site Partner
Posts: 2592
Joined: Thu Mar 25, 2010 4:36 am

Re: Fuel v1.1
mikethedj4
I was expecting a Java .jar lol. it's pretty nice for a first application.

What program did you use to make it???
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Re: Fuel v1.1
Zulf
CodexVideos wrote:
Nice Zulf

This looks nice, i haven't tried Java but i think its hard, so i will have to try it soon as it looks nice.
It's not really that hard, just takes some practice. Take a look at: http://www.youtube.com/thenewboston
Go to his playlists then click Java Programming Tutorials, once you've finished those do his intermediate tutorials, I've only gotten to tutorial 37.
mikethedj4 wrote:
I was expecting a Java .jar lol. it's pretty nice for a first application.

What program did you use to make it???
Notepad, that's why the conventions are messed up, I will make a .JAR when I release v1.1, along with source code.
Image
User avatar
mikethedj4
VIP - Site Partner
VIP - Site Partner
Posts: 2592
Joined: Thu Mar 25, 2010 4:36 am

Re: Fuel v1.1
mikethedj4
What compiler will you be using???
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Re: Fuel v1.1
Zulf
mikethedj4 wrote:
What compiler will you be using???
A batch(.bat) file I wrote. :P
Image
User avatar
mikethedj4
VIP - Site Partner
VIP - Site Partner
Posts: 2592
Joined: Thu Mar 25, 2010 4:36 am

Re: Fuel v1.1
mikethedj4
I didn't know you could compile java applications on windows using Batch scripts.

Does it automatically detect the errors???
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Re: Fuel v1.1
Zulf
mikethedj4 wrote:
I didn't know you could compile java applications on windows using Batch scripts.

Does it automatically detect the errors???
Yes it does.

Compile:
Code: Select all
@echo off
if exist "%programfiles%\Java" (call :compile "%programfiles%\Java\") else (goto error)
:compile
for /D %%x in ("%~1jdk*") do (set p="%%~x\bin\javac.exe")
if defined p (%p% -cp . *.java)
if defined p (goto end)
:error
echo You do not have Java installed. Please download it at the site that is about to load.
"%programfiles%\Internet Explorer\iexplore.exe" http://java.sun.com/javase/downloads/index.jsp
:end
echo Finished!
pause
exit
Run:
Code: Select all
@echo off
java -Xmx500M ####
pause
#### = main class (without .java/.class)
Image
User avatar
mikethedj4
VIP - Site Partner
VIP - Site Partner
Posts: 2592
Joined: Thu Mar 25, 2010 4:36 am

Re: Fuel v1.1
mikethedj4
I had no idea you could do this. This is really nice, much props bro!

What'd you use to make the java .jar???
User avatar
tedhead2
Excellent Poster
Excellent Poster
Posts: 338
Joined: Sun Jan 03, 2010 8:36 am

Re: Fuel v1.1
tedhead2
mikethedj4 wrote:
I had no idea you could do this. This is really nice, much props bro!

What'd you use to make the java .jar???
This is one thing you can use to make a .JAR
JARMaker.zip
You do not have the required permissions to view the files attached to this post.
Image
14 posts Page 1 of 2
Return to “Full Software”