Help me on a Java Project
Filed Under mercialleasing.com |
I am a class 10 student studying computers...
I have to create a project in Java for my final marks
Since I have done only the basics, I need help from you'll on deciding upon a topic for a good project...
I know nested looping and arrays pretty well, am able to cope easily with file-handling, (just basic reading n writing) and also in error handling
Please friends, help me zero in upon a good topic for my project!!!
Also, I have 1 programming problem...
I created the required main thread in one of the programs and from within it called a method named "display"
now, this method, display contains d statement "throws IOException" in its function header
I am recieving a compile time error: "unreported exception java.io.IOException; must be caught or declared to be thrown"
please help me guys !!!
www.programmersheaven.com (http://www.programmersheaven.com)
and for big project refer
www.projectconnection.com (http://www.projectconnection.com)
www.it.okstate.edu/it (http://www.it.okstate.edu/it) projects
www.elance.com (http://www.elance.com)
www.codeproject.com (http://www.codeproject.com)
and lot more............search in gooooooooooooogle
Thanks for the links bro....
I am a class 10 student studying computers...
I have to create a project in Java for my final marks
Since I have done only the basics, I need help from you'll on deciding upon a topic for a good project...
I know nested looping and arrays pretty well, am able to cope easily with file-handling, (just basic reading n writing) and also in error handling
Please friends, help me zero in upon a good topic for my project!!!
Also, I have 1 programming problem...
I created the required main thread in one of the programs and from within it called a method named "display"
now, this method, display contains d statement "throws IOException" in its function header
I am recieving a compile time error: "unreported exception java.io.IOException; must be caught or declared to be thrown"
please help me guys !!!
firstly, you can make many simple projects such as library management or employee payroll system etc
secondly, i'm not too sure whether you are good at error handling.
you forgot to put your code in
try {
}
catch/throws
we call them the try-catch blocks
you need to catch/throw the possible exceptions depending on your code
public static void main(String args) throws IOException
or ..
public static void main(String args){
try{ ..... }
catch(Exception e){ ...... } // Or u can use "Throwable e"
finally{ ..... }
}
www.programmersheaven.com (http://www.programmersheaven.com)
and for big project refer
www.projectconnection.com (http://www.projectconnection.com)
www.it.okstate.edu/it (http://www.it.okstate.edu/it) projects
www.elance.com (http://www.elance.com)
www.codeproject.com (http://www.codeproject.com)
and lot more............search in gooooooooooooogle
http://www.java.happycodings.com/index.html
#If you have any other info about this subject , Please add it free.# |