Results 1 to 3 of 3
Thread: Nooby question :)
- 11-21-2012, 12:32 PM #1
Member
- Join Date
- Nov 2012
- Posts
- 1
- Rep Power
- 0
Nooby question :)
Hello,
First I'm sorry for the question, but these are my first steps in java :)
I have main class named "Application" and class "OutputToFile" which make a simple empty text file. How to call OutputToFile in the main class Application??
Thank you!
import java.io.File;
import java.io.IOException;
public class OutputToFile {
public static void main(String[] args) {
try {
File file = new File("C:\\Java java java\\myfile.txt");
if (file.createNewFile())
System.out.println("Success!");
else
System.out.println("Error, file already exists.");
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
public class Application {
public static void main(String[] args) {
}
}
- 11-21-2012, 01:03 PM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: Nooby question :)
There's only the one method, so call that.
But you really should give the method a better name, that says what it does.Java Code:OutputToFile.main(args);
It also doesn't seem to need the parameters.Please do not ask for code as refusal often offends.
- 11-21-2012, 03:24 PM #3
Re: Nooby question :)
tanevn, please go through the Forum Rules -- particularly the third paragraph.
Also go through the Guide For New Members and BB Code List - Java Programming Forum and edit your post accordingly.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
Forum question on why discussion threads are locked though question is unanswered
By pseeburger in forum Suggestions & FeedbackReplies: 2Last Post: 05-25-2012, 04:00 PM -
question posted by indissa: library question.
By Fubarable in forum New To JavaReplies: 2Last Post: 11-18-2011, 01:14 AM -
Real nooby question but oh well =P
By Arthur123 in forum New To JavaReplies: 6Last Post: 01-04-2011, 11:57 PM -
Question mark colon operator question
By orchid in forum Advanced JavaReplies: 9Last Post: 12-19-2010, 08:49 AM -
Extreme nooby having hard time with this app
By asterix350z in forum New To JavaReplies: 2Last Post: 12-05-2007, 07:24 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks