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.
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
Screenshot:
v1.0

v1.1 (Show, no download yet)

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.
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.
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
I was expecting a Java .jar lol. it's pretty nice for a first application.
What program did you use to make it???
What program did you use to make it???
CodexVideos wrote:Nice ZulfIt's not really that hard, just takes some practice. Take a look at: http://www.youtube.com/thenewboston
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.
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.Notepad, that's why the conventions are messed up, I will make a .JAR when I release v1.1, along with source code.
What program did you use to make it???
mikethedj4 wrote:What compiler will you be using???A batch(.bat) file I wrote. :P
I didn't know you could compile java applications on windows using Batch scripts.
Does it automatically detect the errors???
Does it automatically detect the errors???
mikethedj4 wrote:I didn't know you could compile java applications on windows using Batch scripts.Yes it does.
Does it automatically detect the errors???
Compile:
Code: Select all
Run:
@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
Code: Select all
#### = main class (without .java/.class)@echo off
java -Xmx500M ####
pause
I had no idea you could do this. This is really nice, much props bro!
What'd you use to make the java .jar???
What'd you use to make the java .jar???
mikethedj4 wrote:I had no idea you could do this. This is really nice, much props bro!This is one thing you can use to make a .JAR
What'd you use to make the java .jar???
You do not have the required permissions to view the files attached to this post.
Copyright Information
Copyright © Codenstuff.com 2020 - 2023