462 Replies - 72863 Views - Last Post: 13 September 2011 - 08:36 PM
#3
Re: Java Tutorial Request
Posted 04 September 2007 - 10:03 AM
If you're looking for a tutorial on a certain topic in Java, let us know and someone will hopefully create one.
#5
Re: Java Tutorial Request
Posted 05 September 2007 - 12:28 AM
What parts of Struts? Basic MVC usage only or all the extra bits?
#6
Re: Java Tutorial Request
Posted 05 September 2007 - 02:29 AM
Here's a good Struts tutorial that I used months ago. There are loads of others as well. There aren't that many Struts 2 tutorials out there yet, though.
#7
Re: Java Tutorial Request
Posted 05 September 2007 - 06:43 PM
Mostly I would like to know more about actionForms. I got a book on struts, but it follows on terribly boring example over and over and for some reason I just can't read it... which sucks because it was the only one at Barns and Nobel. It seemed ok in the store, but when I got it home.... nothing.
I am working on a project that uses a struts framework. Problem is that the default actionForms are not all that helpful if one is extending the capablities... but I do not have the code for the action forms (but I heard today about a nice java decompiler that works well) so I really don't know how to make my own... especially since I don't really know Struts very well.
Thanks for the link though.
I am working on a project that uses a struts framework. Problem is that the default actionForms are not all that helpful if one is extending the capablities... but I do not have the code for the action forms (but I heard today about a nice java decompiler that works well) so I really don't know how to make my own... especially since I don't really know Struts very well.
Thanks for the link though.
#8
Re: Java Tutorial Request
Posted 06 September 2007 - 03:06 AM
NickDMax, on 5 Sep, 2007 - 06:43 PM, said:
Mostly I would like to know more about actionForms. I got a book on struts, but it follows on terribly boring example over and over and for some reason I just can't read it... which sucks because it was the only one at Barns and Nobel. It seemed ok in the store, but when I got it home.... nothing.
I am working on a project that uses a struts framework. Problem is that the default actionForms are not all that helpful if one is extending the capablities... but I do not have the code for the action forms (but I heard today about a nice java decompiler that works well) so I really don't know how to make my own... especially since I don't really know Struts very well.
Thanks for the link though.
I am working on a project that uses a struts framework. Problem is that the default actionForms are not all that helpful if one is extending the capablities... but I do not have the code for the action forms (but I heard today about a nice java decompiler that works well) so I really don't know how to make my own... especially since I don't really know Struts very well.
Thanks for the link though.
Your first post only said "Struts!", so I didn't have much else to go on.
This post has been edited by Programmist: 06 September 2007 - 03:25 AM
#9
Re: Java Tutorial Request
Posted 06 September 2007 - 07:19 PM
I would like to understand Web Portels better and using them with Java please? i am trying to work my wy through Rapid Applicaiton Development adn web Shere
#10
Re: Java Tutorial Request
Posted 09 September 2007 - 08:34 AM
Grr Strings!!! I don't understand them..I don't understand the .length stuff and how to remove vowels from a String that has been entered..
#11
Re: Java Tutorial Request
Posted 09 September 2007 - 09:11 AM
wow, you know I always just take for granted all the more simple stuff... that's a good idea, perhaps i'll start one later.
#13
Re: Java Tutorial Request
Posted 20 September 2007 - 12:15 AM
skyhawk133, on 4 Sep, 2007 - 10:03 AM, said:
If you're looking for a tutorial on a certain topic in Java, let us know and someone will hopefully create one.
skyhawk133, on 4 Sep, 2007 - 10:03 AM, said:
Dear Sir,
i m need of tutorial on java , jsp and EJB. So i request u to please send me these if u can.
i m need of tutorial on java , jsp and EJB. So i request u to please send me these if u can.
#14
Re: Java Tutorial Request
Posted 20 September 2007 - 12:25 AM
i'm really not sure what happened here.
i assume you accidentally wrote your response in quotes?
i assume you accidentally wrote your response in quotes?
#15
Re: Java Tutorial Request
Posted 20 September 2007 - 01:34 AM
How simple event creating/raising works between class and it's child class. Something like that would look in Csharp:
public class <master class>
{
//instance of <subclass>
private <subclass> <iname> = new <subclass>();
//constructor
public <master class>()
{
this.<iname>.<event name> += new <subclass>.<event handler>(<procedure>);
}
private void <procedure>(<parameters>)
{
//do something, when child raises an event
}
public class <subclass>
{
public event <event handler> <event name>;
public delegate void <event handler>(<parameters>);
public void Raise_event(<parameters>)
{
if (<event name> != null)
{
//raise actual event
<event name>(<parameters>);
}
}
//some other code that calls Raise_event
}
}
#16
Re: Java Tutorial Request
Posted 30 September 2007 - 12:59 PM
recursive method pls
#17
Re: Java Tutorial Request
Posted 30 September 2007 - 01:05 PM
hi,
i tutorial on like nested loops (if thats the right term)
like how to go from a loop into a loop and then leave the inner loop and go back to the outer... having problems with this concept on a project im working on... got a back option. but it wont return to the previous loop. (using do..While loops at the moment Tried to use booleans to terminate the loop but they just wont die..)
i tutorial on like nested loops (if thats the right term)
like how to go from a loop into a loop and then leave the inner loop and go back to the outer... having problems with this concept on a project im working on... got a back option. but it wont return to the previous loop. (using do..While loops at the moment Tried to use booleans to terminate the loop but they just wont die..)
|
|

New Topic/Question
This topic is locked



MultiQuote











|