TweetFollow Us on Twitter

Java Break
Volume Number:12
Issue Number:5
Column Tag:Getting Started

Java Break

By Dave Mark

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Over the next few months, we’re going to take a break from PowerPlant and play around with the Java programming language. Why spend time on Java? Java is extremely popular. Java is a cool language. Many people think Java is a better language than both C and C++. Java offers an elegant mechanism for developing software that will run on a Mac, Windows machine, or a Unix box, all without recompiling.

If you are even a little interested in the World Wide Web, you should definitely learn Java. While you’ll use HTML (or an HTML-generating program) to create your web content, you can greatly enhance your Web pages by calling up Java applets from within your HTML.

Java Is Not C++

You will frequently see Java compared to C++. Though Java is very similar to C++, there are many major differences. For starters, Java doesn’t support pointers, is designed to support multi-threading, and does its own garbage collection and dynamic memory management. To add a user interface to a C++ program, you’ll take advantage of a Toolbox designed for a specific platform (in our case, we use the Mac Toolbox). To add an interface to a Java applet, you’ll take advantage of a Java-specific, platform-independent interface library called the AWT (advanced windowing toolkit) that ships with your development environment.

Java is, however, very similar to C++. As we go through our Java examples, you’ll find very few clues that this isn’t straight C++ code. Of course, I’ll do my best to point out the differences.

Before you read on, you might want to take some time to get a bit of background on the Java language. The March issue of MacTech Magazine had an excellent article by Richard Cardona called Writing Java 102 that is definitely worth a read. Of course, there have been a number of other Java articles, and there is also a steadily increasing deluge of Java books hitting the market. Check ’em out, pick one you like, dig in and learn the basics.

Getting Java on Your Machine

Before you can work with Java, you’ll need to get hold of a Java development environment. There are several choices. For starters, you can visit Sun’s Java web site (http://java.sun.com) and download the Macintosh version of the Java Development Kit (JDK). The JDK is free (except, of course, for any internet access fees) and fairly straightforward to use. It consists of all the files you need to do Java development, along with a Java compiler and an applet runner called Applet Viewer. The real problem with the JDK is that it is not a development environment, but rather a collection of tools. To compile a file, you either drop the file onto the compiler or, from inside the compiler, you select Open... from the File menu and select the file you want to compile. To edit your source code, you use SimpleText, BBEdit, or some other plain text editor. To run the compiled .class file, you go back to the Finder and drag the .class file onto the Applet Viewer. All this back-and-forth between tools and the Finder is a real pain. On the other hand, I don’t think Sun really intended the JDK to be the programmer’s choice for Java development.

Another choice for Java development is Roaster, which was released in January by Natural Intelligence. Roaster uses an integrated development environment (like CodeWarrior and SC++), allowing you to edit, compile, and run your applets from within the environment. The January release of Roaster sold for $299.

By the time you read this, Metrowerks will have shipped Discover Java, their professional Java development environment. Discover Java sells for $99, and comes with an electronic copy of Learn Java on the Macintosh by Barry Boone (Addison-Wesley, 1996). The Java development tools also ship on CodeWarrior Gold 9, so if you already subscribe to CW Gold, about all you’ll be missing is the book. Since I’m writing this about three months before Discover Java and CW9 hit the streets, check with Metrowerks (http://www.metrowerks.com, or call (800) 377-5416 or send email to sales@metrowerks.com) to get the latest on pricing and availability.

Finally, Symantec has announced Java support for the Macintosh via a product called Café. According to a press release on their Web site, Café will ship on the SC++ CD and was scheduled to ship in the first quarter of 1996.

Your First Application: Hello

Before we dig in to our first example, a quick word about terminology. Strictly speaking, the term applet applies to a Java class that is derived from the class java.applet.Applet and launched from an HTML page via the <applet> tag. Since none of our first few examples fit this definition, they are not really applets. On the other hand, these little examples aren’t really applications in the true sense of the word, since that implies that they run independent of our Java environment. However, since the term “applet” is so specific, we’ll stick with the term “application” until next month when we build our first true applet.

Our first Java application will display the obligatory “Hello, world!” message:

public class hello
{
 public static void main(String argv[])
 {
 System.out.println("Hello, world!");
 }
}

Create a new file, type in this code, then save the file as hello.java. Just as you’d end your C source code file with the extension .c and your C++ source code file with .cp or .cpp, the extension .java is used to denote a Java source code file.

If you are using the JDK, drag the file hello.java onto the application named Java Compiler (gee, guess what this is). The compiler will convert your source code into Java byte code, intended for a Java interpreter that will turn these byte codes into the instructions specific to the machine it is running on. The interpreter is part of the virtual machine, the layer that lies between the platform-independent Java byte code and your machine.

The compiler writes the Java byte code into a file named xxx.class, where xxx is the name of the class you’ve implemented. In this case, the compiler will create a file called hello.class. Again, if you are using the JDK, drag the file hello.class onto the application named Applet Viewer. As you might expect, the Applet Viewer will start running at the public method named main().

The output of this application is shown in Figure 1. Notice that the window is named stdout. If you’ve ever spent any time in the Unix universe, you know that stdout stands for “standard output”. The method System.out.println() sends its output to the stdout window followed by a carriage return. The method System.out.print() sends its output to the stdout window without generating a carriage return.

Figure 1. The output from the hello.class application

System.out.println() is a lot like printf() or cout in that they all send their output to a console window. Just as you first learned to program using consoles and eventually moved to the Mac Toolbox for your user interface, we’ll start with System.out.println() and eventually move on to the user interface routines in the AWT (advanced windowing toolkit). You’ll use the AWT to implement a user interface you’ll want to appear on a web page.

Don’t worry too much about the structure of our Java source code just yet. The three applications in this month’s column all use the same basic structure: a class wrapper with a single public method called main(). Oh yeah, in Java, a class’ functions are called methods instead of member functions.

Your Second Application: StringTester

Our second application, stringTester, introduces an important Java data type: String. As its name suggests, the String class was implemented to work with strings. Unlike C and Pascal strings, a Java String is an object, complete with variables (the Java term for data members) and methods. Our third applica-tion, stringMethods, will demonstrate some of the String methods. This application, stringTester, will get us started.

Here’s the source...

public class stringTester
{
 public static void main(String argv[])
 {
 String string1, string2 = ", world!";
 
 string1 = "Hello";
 
 System.out.print( string1 );
 System.out.println( string2 );
 System.out.println( string1 + string2 );
 
 string1 += string2;
 System.out.println( string1 );
 
 System.out.println( "Length of this string: " + 
 string1.length() );
 }
}

The first few lines show you two ways to create and initialize a String:

 String string1, string2 = ", world!";
 
 string1 = "Hello";

You can initialize the String when you define it or you can use the assignment operator, as we did in the second line. Nothing unusual here.

The next line prints the first string, “Hello”, without a carriage return. The second line prints the second string, “, world!”, with a carriage return.

 System.out.print( string1 );
 System.out.println( string2 );

This produces this line of output in the stdout window:

Hello, world!

The next line uses the + operator to concatenate string1 and string2, sending the joined string as a parameter to println().

 System.out.println( string1 + string2 );

Here’s the output produced by this code:

Hello, world!

Next, the += operator is used to concatenate string2 onto the end of string1 and the new string1 is send to stdout:

 string1 += string2;
 System.out.println( string1 );

Once again, here is the output:

Hello, world!

Finally, the length() method is called to return the length of the modified string1. Notice that the + operator is used to merge the two strings passed to println() into a single string:

 System.out.println( "Length of this string: " + 
 string1.length() );

Here’s the final line of output:

Length of this string: 13

Your Third Application: StringMethods

Our last application this month demonstrates some of the String methods. As you go through this program, take a moment to go through the documentation that came with your development environment. In particular, look for the file java.lang.String.html. As you’ll see as you learn more about Java, all the Java classes are part of some larger collection of classes. These collections take the form of packages. For example, the String class (along with the rest of the “built-in” Java types) are part of the java.lang package. To use a package, you use a mechanism similar to the #include. This mechanism is the import statement. We’ll learn about the import statement in next month’s column. The one package you automatically have access to is java.lang and so you don’t need to import it to get access to the String class.

The file java.lang.String.html contains a complete description of the variables and methods that make up the String class. Use your Web browser to open this html file and look over the class.

Here’s the stringMethods source code...

public class stringMethods
{
 public static void main(String argv[])
 {
 char myArray[] = {'a', 'b', 'c', 'd', 'e'};
 java.lang.Stringstring = new String( myArray );
 
 System.out.println( "string: " + string );
 System.out.println( "string[2]: "
 + string.charAt( 2 ) );
 
 string = string.concat( string );
 System.out.println( "Doubled string: "
 + string );
 
 System.out.println( "Index of first 'x': "
 + string.indexOf( 'x' ) );
 
 int  index = string.indexOf( 'e' );
 System.out.println( "Index of first 'e': "
 + index );
 
 if ( index >= 0 )
 System.out.println( "Index of second 'e': "
 + string.indexOf( 'e', index+1 ) );
 
 System.out.println( "substring[2] to the end: "
 + string.substring( 2 ) );
 System.out.println( "substring[2] up to string[4]: "
 + string.substring( 2, 4 ) );
 
 string = string.replace( 'c', 'x' );
 System.out.println( "Replace 'c' with 'x': "
 + string );
 
 System.out.println( "Display as upper case: "
 + string.toUpperCase() );
 }
}

The first two lines show you yet another way to create a new String. As you’ll see when you read through java.lang.String.html, there are several versions of the String constructor. Just like C++, Java supports function overloading, allowing you to create multiple versions of the same function, as long as each version has a unique signature (the function name combined with the parameter list).

This line defines an array of chars and initializes the array with the characters a through e:

 char myArray[] = {'a', 'b', 'c', 'd', 'e'};

This line uses new to define the new String object, using the char array to initialize the String to the string “abcde”. Notice that we refer to java.lang.String instead of just String. The two terms are equivalent. Since the java.lang package is automatically included, the java.lang prefix is not needed.

 java.lang.Stringstring = new String( myArray );

The next line prints this string. System is actually java.lang.System. java.lang.System features a variable called out which features methods called print() and println(). We could have referred to java.lang.System.out.println() but, again, the java.lang is assumed.

 System.out.println( "string: " + string );

Here’s the output:

string: abcde

This next println() calls the String method charAt(). charAt() returns the nth character in the String.

 System.out.println( "string[2]: "
 + string.charAt( 2 ) );
 

Here’s the output. Note that Java strings are 0-based, just like C and C++.

string[2]: c

The concat() method appends its parameter to the end of the current object. In this case, we concat() string on the end of string, storing the result in string, then print the newly doubled string.

 string = string.concat( string );
 System.out.println( "Doubled string: "
 + string );

Here’s the output...

Doubled string: abcdeabcde

The method indexOf() searches the string for the specified character, returning either an index into the string or the value -1.

 System.out.println( "Index of first 'x': "
 + string.indexOf( 'x' ) );

Here’s the output. Since the string doesn’t contain an ‘x’, indexOf() returned -1.

Index of first 'x': -1

The next lines of code searches for the first ‘e’ in the String, storing the index in the variable index, then printing the index.

 int  index = string.indexOf( 'e' );
 System.out.println( "Index of first 'e': "
 + index );

Here’s the output:

Index of first 'e': 4

Next, assuming the index was not negative, we use a second version of indexOf() which takes a second parameter. This second parameter tells indexOf() where to start its search in the string, allowing us to search the string for a second ‘e’.

 if ( index >= 0 )
 System.out.println( "Index of second 'e': "
 + string.indexOf( 'e', index+1 ) );

Here’s the output:

Index of second 'e': 9

Next, the substring() method is called. substring() takes an index into the string and returns a string that runs from the index to the end of the string.

 System.out.println( "substring[2] to the end: "
 + string.substring( 2 ) );

Here’s the output:

substring[2] to the end: cdeabcde

Next, we call a second version of substring(). This one takes a second parameter, an index that marks the end of the substring.

 System.out.println( "substring[2] up to string[4]: "
 + string.substring( 2, 4 ) );

Here’s the output:

substring[2] up to string[4]: cd

replace() replaces all occurrences of char 1 with char 2 in the string, then prints the result.

 string = string.replace( 'c', 'x' );
 System.out.println( "Replace 'c' with 'x': "
 + string );

Here’s the result:

Replace 'c' with 'x': abxdeabxde

toUpperCase() replaces all lower case letters in the string with their upper case equivalents.

 System.out.println( "Display as upper case: "
 + string.toUpperCase() );

Here’s the result:

Display as upper case: ABXDEABXDE

Till Next Month...

Next month, we’ll create our first true applet and learn a bit about the advanced windowing toolkit (AWT). Till then, take some time to read through some of the .html files that came with your development environment.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.