Hello,
I apologize if this question has been asked earlier. I just want to make sure
I'm on the right track:
If I finish the homework for J2EE Basic courses (total 13 HW), is there any
next step to get the certificate?
I also notice this mailing list has discussion about the J2EE Advanced. Jus
Hi Chetana :
Where do you put your .properties file ?
sincerely
bambang
"Java Samurai with Passion!"
On Mon, Nov 23, 2009 at 2:12 PM, Chetana Shenoy wrote:
> Hello:
>I was trying to run a web application viz Lottery Annotation. I got the
> following error:
>
> The following error occurre
Hello There!
my two cents. [?]
char a ='B';
while(a < 'Z') {
a++; // Most be here, otherwise u will get an infinity loop :P ...
mPanel.add(new Button(*Character.toString(a)*);
}
by the way, I advise you to use JButton (from Swing API) instead Button
(AWT).
On Mon, Nov 23, 2009 at 2:
UNCLASSIFIED
As always there are many ways to skin a cat...
char a = 'a';
String s1 = String.valueOf(a);
String s2 = new Character(a).toString();
String s3 = "" + a;
System.out.println("'"+s1+"' = '"+s2+ "' = '"+s3
char a;
a = 'B';
a++;
while (a < 'z') {
mPanel.add( new Button("" + a) );
}
--- On Sun, 11/22/09, tedpottel wrote:
> From: tedpottel
> Subject: [java ee programming] Trying to store a char in a string
> To: "Java EE (J2EE) Programming with P
Hi Fernando,
You probably should add a new .java file JDBCSamples-->Source
packages-->New-->MyOwnJDBCProgram.java;
inside it you will create both tables (CD and Location) and insert rows
into them.
Regards,
Moria.
From: fernando pardo [mailt
Hi,
In my NB 6.7.1 I want to add Hibernate plugin. Unfortunately in "
Available plugins" I can't find Hibernate.
Can you help me please.
Best regards,
Rafal Laczek
I love you "2012"
Kocham takie filmy:)
http://klik.wp.pl/?adr=http%3A%2F%2Fcor
Hi,
The problem is solved.
BR
Rafal
Dnia 23-11-2009 o godz. 15:44 Rafał Laczek
napisał(a):
> Hi,
>
> In my NB 6.7.1 I want to add Hibernate plugin. Unfortunately in "
> Available plugins" I can't find Hibernate.
> Can you help me please.
>
> Best regards,
> Rafal Laczek
>
> -
Please delete me from your mailing list. I will rejoin in due course.
This mail address is my work email as has limitations now on size.
Thank you all
Dominic jofirisi
***
Hello all,:
How can i do to create the file MyOwnJDBCProgram.java?
I created the file location.java with the following path:
JDBCSamples-->Source packages-->New
-->JavaMainClasses(is this rigth??)
thanks
--
You received this message because you are subscribed to the Googl
Hi
In the original code, there must not be a comma "," between
"LOCATION_ID" and "int".
I.e. must write: "... LOCATION_ID int NOT NULL ..."
and not: "... LOCATION_ID/*,*/ int NOT NULL ..."
Otherwise, I think the declaration of the constraint on the
"LOCATION_ID" line must work, even if I like
Hello mate,
Here it goes.
char a = 't';
String charStr = new String(String.valueOf(a));
or simply:
String charStr = String.valueOf(a);
Hope that helps.
Regards,
TS
2009/11/22 tedpottel
> Hi,
> I'm trying to creat a row of buttons with the letters a to z in them,
> hear is my code
>
12 matches
Mail list logo