COBOL Programmers Swing with Java and over one million other books are available for Amazon Kindle. Learn more

Buy New

or
Sign in to turn on 1-Click ordering.
Buy Used
Used - Like New See details
$3.00 & eligible for FREE Super Saver Shipping on orders over $25. Details

or
Sign in to turn on 1-Click ordering.
 
   
More Buying Choices
Have one to sell? Sell yours here
COBOL Programmers Swing with Java
 
 
Start reading COBOL Programmers Swing with Java on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

COBOL Programmers Swing with Java [Paperback]

E. Reed Doke (Author), Bill C. Hardgrave (Author), Richard A. Johnson (Author)
4.5 out of 5 stars  See all reviews (2 customer reviews)

Price: $59.00 & this item ships for FREE with Super Saver Shipping. Details
  Special Offers Available
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Usually ships within 1 to 2 months.
Ships from and sold by Amazon.com. Gift-wrap available.
Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Kindle Edition $37.60  
Paperback $59.00  

Book Description

December 28, 2004 0521546842 978-0521546843 2
Featuring the development of graphical user interfaces (GUI's) using the latest in Java swing components, this new edition of Java for the COBOL Programmer (Cambridge, 1999) provides COBOL programmers a clear, easy transition to Java programming by drawing on the numerous similarities between COBOL and Java. The authors introduce the COBOL programmer to the history of Java and object-oriented programming and then delve into the details of the Java syntax, always contrasting them with their parallels in COBOL. A running case study permits the reader to have an overall view of application development with Java. First Edition ISBN (Pb): 0-521-65892-6

Special Offers and Product Promotions

  • Buy $50 in qualifying physical textbooks, get $5 in Amazon MP3 Credit. Here's how (restrictions apply)

Frequently Bought Together

Customers buy this book with OOP Demystified $13.19

COBOL Programmers Swing with Java + OOP Demystified
Price For Both: $72.19

One of these items ships sooner than the other. Show details

  • This item: COBOL Programmers Swing with Java

    Usually ships within 1 to 2 months.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • OOP Demystified

    In Stock.
    Ships from and sold by Amazon.com.
    Eligible for FREE Super Saver Shipping on orders over $25. Details



Editorial Reviews

Review

"This book will get maximum leverage out of any reader's COBOL background. I would recommend it as a starting point for a COBOL programmer who is planning to learn Java." Computing Reviews

Book Description

In the fast moving world of information technology, Java is now the #1 programming language for traditional and web-based application development. This book provides COBOL programmers a clear, easy transition to Java programming by drawing on the numerous similarities between COBOL and Java. The authors introduce the COBOL programmer to the history of Java and object-oriented programming and then dive into the details of the Java syntax, always contrasting them with their parallels in COBOL. A running case study gives the reader an overall view of application development with Java. This new edition features the development of graphical user interfaces (GUI's) using the latest in Java Swing components.

Product Details

  • Paperback: 296 pages
  • Publisher: Cambridge University Press; 2 edition (December 28, 2004)
  • Language: English
  • ISBN-10: 0521546842
  • ISBN-13: 978-0521546843
  • Product Dimensions: 9.1 x 7.1 x 0.6 inches
  • Shipping Weight: 1 pounds (View shipping rates and policies)
  • Average Customer Review: 4.5 out of 5 stars  See all reviews (2 customer reviews)
  • Amazon Best Sellers Rank: #978,414 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

2 Reviews
5 star:
 (1)
4 star:
 (1)
3 star:    (0)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
4.5 out of 5 stars (2 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

4 of 4 people found the following review helpful:
5.0 out of 5 stars Good bye Hello World, June 26, 2007
By 
Linda Yurek (Elk Grove Village, IL USA) - See all my reviews
(REAL NAME)   
Amazon Verified Purchase(What's this?)
This review is from: COBOL Programmers Swing with Java (Paperback)
Why does every Java book start with Hello World? This one doesn't. They use a bank system to illustrate the java commands. And it does it in less than 300 pages. Which means it actually is possible to read it from beginning to end. Plus it is easy to follow. It may not have all the things you can do in java but I found it to be of great help as I learn java. For cobol programmers I feel this is one to have in your library.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
4.0 out of 5 stars Pretty Good Bigginer's Java, December 15, 2007
By 
Toocha Rodriguez (Baltimore, MD USA) - See all my reviews
This review is from: COBOL Programmers Swing with Java (Paperback)
At 282 pages, this books covers a lot of ground about Java and Object Oriented Programming. There are 11 Chapters covering everything from Object Oriented Programming fundamentals to somewhat advanced subject matter like Object Oriented Development Issues. A Community National Bank Application is used to demonstrate OO Concepts such as Encapsulation, Inheritance,Polymorphism, Java classes structure, variables declaration, Java operators, decision making constructs such as: the while loop and for loop. There are also Chapters that cover topics like Arrays, file I/O, Database access and Java GUI. There are a lot of code samples followed by explanation of what the code is doing. Be carefully though, I found several errors in this book. For example, Chapter 4, StringDemo.java example, the code on line 9 System.out.println(s2.substring(10, 13) + "FUN!"); will print Jav is FUN!. To print Java is FUN!, change the substring method parameters to 10,14, i.e., System.out.println(s2.substring(10, 14) + "FUN!");
There are also some GUI code samples that use show() method, which has been deprecated. To be fair, the number of code sample errors in this book is low and I'm not really complaining about them. I think sometimes a code sample error is a good thing because it makes you research the problem. The code samples are also available at the publisher's web site on Internet. This book also attempts to take COBOL syntax and identify compatible/similar Java syntax or concepts. I think that will be appreciated by most COBOL Programmers. This book seems to be geared towards Java 4 SE Edition, i.e., Java v1.4. Notice that the Web Based Application development is not covered by this book. The authors also assume that the reader knows about some Java IDE, such as Eclipse, or NetBeans. Bottom line, this is easy to read and to follow book that covers a lot of topics in OOP and Java. It will not make you the greatest Java Developer ever, however, it will teach you something about OO programming and how to code simple Java Apps. I would recommend this book to any COBOL Programmer who wants to learn some Java.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Only search this product's reviews



Inside This Book (learn more)
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
custom exception classes, bank customer application, store new balance, scope terminator, class inherits methods, set the frame size, picture clause, data access class, method header, boat loans, decimal positions, swing package, end constructor, constructor method, awt package, object serialization, class header, customer object
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Community National Bank, Jed Muzzy, Great Falls, Balance After, Three-Tier Design, Sun Microsystems, Database Access, The Math, Beginning Balance, Arithmetic Exception, John Wiley, Accept Clear, Improving the Window Layout, New York, Visual Basic, Will Java, Year Balance
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Surprise Me!
Search Inside This Book:

What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 

Your tags: Add your first tag
 

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject