IT SOLUTIONS
Your TECHNOLOGY partner! 
-Collapse +Expand
Java
Search Java Group:

Advanced
-Collapse +Expand Java Group Home
Highlights◄╣

WEEKLYLESSON

MY
GROUPSETTINGS
-Collapse +Expand Message Board
-Collapse +Expand Java KB
-Collapse +Expand Java To/From
To/FromCODEGuides
-Collapse +Expand Java Store
PRESTWOODSTORE
-Collapse +Expand Members Only
   ► All GroupsJava Group   All Groups   Print This   
Highlights Updated Posts Unanswered Posts Online Today Who's Reading What Member Birthdays!

HighLights (Java Group)

Switch to New Group Posts By Type view.

New: Java Group Members

1. Shreyas.S  (9 visits.) 2. Eric.B  (2 visits., OH USA) 3. marianchovan  (15 visits. USA) 4. kulo.m  (1 visits. abanda, AL USA) 5. Vincent.W  (2 visits. UNK) 6. Rommel  (37 visits. Cuenca USA) 7. Mersad.M  (2 visits., AL UNK) 8. arturor21  (3 visits. Tijuana, UNK MX) 9. Hazwa.a  (2 visits. UNK) 10. Rodney.N  (4 visits. West Hills, CA USA)

New Java Posts: All Types

View:
New?   Title Created By For...
None. No highlights in last 90 days.
Icon Legend:
Recent or not:
- Recent activity (within last two weeks).
- No activity last two weeks.
 Since your last logged visit:
- New to you or updated since your last visit (sign in now to activate).
- NOT new to you since your last visit (sign in now to activate).

New: Java Message Board Posts

Go To: Java Message Board

Thread 5 of 5
Thread Starter  

Maureen
Arrays in Java
Can someone please help - I need to find out if arrays in Java of fixed size, with the size determined at:-, , Compile time or Run time.....?
Posted to MB Topic: Java News / Other
8 years ago
1 Reply:

mprestwood
Hi Maureen,, Java arrays are not created when you declare them. Arrays declared as members are initialized to null but array references declared in methods are not initialized. Either way, you allocate memory for them at runtime. For example:, int arrSize = 100;, String[] myArray = new String[arrSize];and, String[] oneDimArray = { "abc","def","xyz" };
8 years ago
Nothing New Since Your Last Visit
3263
Hits

Thread 4 of 5
Thread Starter  

Ken Seymour
Has anyone out there used JBoss?
I am thinking of trying JBoss to keep my J2EE skills up., I am currently working on a Java project that is neither web related nor J2EE., , From looking at the website, http://www.jboss.org/, it looks as though JBoss is Free for both development and production., I guess they make their living from support and selling detailed documentation., , Anyway, I was wondering if anyone out there had used it.
Posted to MB Topic: J2EE
11 years ago
5 replies. Last post:

timbeyond1
The primary focus on my career path is getting productive in J2EE, and I know J2SE well., I find that Sun's Appserver is more involved than JBoss, so I'm starting with JBoss., , In contrast, JBoss uses a similar means of configuration to Apache Tomcat., I know Tomcat servlets well enough to get and keep things up and running cleanly, and that paradigm suits me. , Searching and tweaking XML config files, plus making things right for the Apache HT...
9 years ago
Nothing New Since Your Last Visit
2984
Hits

Thread 3 of 5
Thread Starter  

AMI
Sun Certification
Hi all,, , I am planning to take up Sun Certified Web Component Developer certification. Can you suggest me some sites where I can find sample papers and materials to learn. Please give me sites other than Sun's Education portal., , Thanks.
Posted to MB Topic: Java News / Other
11 years ago
1 Reply:

KenSeymour
I just recently passed the Sun Certified Java Programmer exam and I found this book usefull:, , http://www.amazon.com/exec/obidos/tg/detail/-/158880139X/qid=1036089019/sr=1-13/ref=sr_1_13/002-7190039-9256003?v=glance , , Java 2 Exam Cram, Second Edition , Bill Brogden., , I first took a sample exam from the web (sorry I don't remember where it was) and failed., After studying with the book, I passed., I found the fact that there were about 10 sa...
11 years ago
Nothing New Since Your Last Visit
2485
Hits

Thread 2 of 5
Thread Starter  

Joakim Haglund
Farsi in forms
Hi, , How to write farsi language in JBuilder 6 forms?, Some characters cannnot be displayed correctly., , Best Regards, Mahdi
Posted to MB Topic: JBuilder
11 years ago
Nothing New Since Your Last Visit
4164
Hits

Thread 1 of 5
Thread Starter  

brian
JBuilder vs. C++Builder
Please refer to my post in "C++, Java and simple stuff.", , What do I want to do? I don't know. I'm not working from a project spec or an RFP. I'm just wondering want I might consider to advance my understanding of handling digital content., , I don't wish to enter the .Net environment. I'ld like to maintain some independance from any vendor., , How might I compare? I visit the Borland site regularly and the newsgroups, but I can't figure the difference. For example, what's the difference between applets and components? I'm interested in writing simple-minded and discrete apps - both at home on Win 98, and at work, Win NT4 and Win 2000. , , Thanks.
Posted to MB Topic: JBuilder
12 years ago
2 replies. Last post:

brian p kim
Thanks JBuilder., , I appreciate the explanations. I'll have to define better what I want. , , My motivation is basically irrelevant. I'm a Borland loyalist - from Turbo Pascal, through Paradox and Quattro. I'ld like to continue with one of their products, but don't understand where they'll take me., , Some people travel, others buy tools. I like tools. Makes me feel less dependant., , But nowadays, things are so much more complicated. Don't know...
12 years ago
Nothing New Since Your Last Visit
1688
Hits
More...

New: Java Knowledge Base Posts

Go To: Java Knowledge Base
  KB Article    

Mike Prestwood
1. Java Deployment Overview

Java applets and applications both require the Java Runtime Environment (JRE) and any additional dependencies you've added.

Posted to KB Topic: Tool Basics
51 months ago

Code
Nothing New Since Your Last Visit
2834
Hits

Mike Prestwood
2. Java Report Tools Overview

Both Eclipse 3.3 and JBuilder 2008 come bundled with Business Intelligence and Reporting Tools (BIRT). BIRT is an Eclipse-based open source reporting system with both a report designer based on Eclipse, and a runtime component that you can add to your app server plus a charting engine that lets you add charts.

Posted to KB Topic: Tool Basics
51 months ago

Code
Nothing New Since Your Last Visit
2649
Hits

Mike Prestwood
3. Java Logical Operators

Java logical operators:

&& and, as in this and that
|| or, as in this or that
! Not, as in Not This
& boolean logical OR (not short circuited)
| boolean logical OR (not short circuited)
?: Ternary (short for if-then-else)
~ Unary bitwise complement
<< Signed left shift
>> Signed right shift
>>> Unsigned right shift
^ Bitwise exclusiv OR

Posted to KB Topic: Language Basics
51 months ago
(1 Comments , last by alvitar )

Code
Nothing New Since Your Last Visit
3187
Hits

Mike Prestwood
4. Java Inlining (Automatic)

The Java compiler automatically inlines when it determines  a benefit. The use of final methods is considered a compiler hint to tell the compiler to inline the method if beneficial.

Posted to KB Topic: Language Details
51 months ago

Code
Nothing New Since Your Last Visit
3424
Hits
More...

New: To/From Code

Go To: Java To/From Guides

Code Snippets

Microsoft VBScript runtime error '800a01f4'

Variable is undefined: 'CrossRef_ShowTop'

/ASPSuite/NewPosts.asp, line 598