Welcome, Guest. Please login or register.

Author Topic: Any Java Programmers here?  (Read 5959 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Trev

  • Hero Member
  • *****
  • Join Date: May 2003
  • Posts: 1550
  • Country: 00
    • Show all replies
Re: Any Java Programmers here?
« on: January 24, 2008, 08:33:40 PM »
I only write Java code when I need ColdFusion to do something it doesn't, like paged LDAP searches. (i.e. My view of Java is limited to the environments I support.)

Nothing wrong with Java as a language. Just make sure your runtime environment (JRE, application server, etc.) is stable and fit for your purposes.

We use Eclipse.

Trev
 

Offline Trev

  • Hero Member
  • *****
  • Join Date: May 2003
  • Posts: 1550
  • Country: 00
    • Show all replies
Re: Any Java Programmers here?
« Reply #1 on: January 24, 2008, 10:37:33 PM »
Java is portable, but you can't make assumptions about the capabilities of the JVM. For example, some environments lack graphic display capabilities; others lack network connectivity.

In theory, C and C++ source code is portable as long as you use standard libraries or libraries you know are available on the platforms you want to support. In practice, however, not every platform implements the standard libraries in the same way, so compiling source on a new platform usually requires some sort of porting effort. What usually kills modern applications is the lack of a GUI toolkit.

If you want to write for Amiga-like operating systems, Java is definitely not the solution. Stick to C (or C++ if you have access to a well-maintained compiler).